From 3e6261be31ebab4a00f44887eee6af13b512c897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=81=A5=E8=8E=B9?= Date: Sat, 18 May 2024 11:53:04 +0800 Subject: [PATCH] wip: Update build workflow --- .github/workflows/build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 024228d..0aaaa26 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.19.6 - run: | sudo apt-get update -y sudo apt-get install -y ninja-build libgtk-3-dev libappindicator3-dev xvfb @@ -23,6 +26,9 @@ jobs: steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.19.6 - run: flutter config --enable-macos-desktop - run: cd example && flutter build macos -v # Blocked by https://github.com/flutter/flutter/issues/118469 @@ -32,5 +38,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: subosito/flutter-action@v2 + with: + channel: stable + flutter-version: 3.19.6 - run: cd example && flutter build windows -v - run: cd example && flutter test integration_test -v