-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
ci: specify flutter version to use
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ jobs: | |
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
flutter-version-file: app/pubspec.yaml | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y | ||
|
@@ -35,7 +36,7 @@ jobs: | |
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: master | ||
flutter-version: 3.27.2 | ||
flutter-version-file: app/pubspec.yaml | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y | ||
|
@@ -65,9 +66,11 @@ jobs: | |
with: | ||
vcpkgDirectory: ${{ github.workspace }}/app/vcpkg | ||
- name: Set up Flutter | ||
uses: subosito/flutter-action@v2 | ||
# yq is not installed on windows on v2 | ||
uses: subosito/[email protected] | ||
with: | ||
channel: stable | ||
flutter-version-file: app/pubspec.yaml | ||
- run: flutter build windows | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -95,6 +98,7 @@ jobs: | |
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
flutter-version-file: app/pubspec.yaml | ||
- run: flutter build macos | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
@@ -132,6 +136,7 @@ jobs: | |
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
flutter-version-file: app/pubspec.yaml | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update -y | ||
|
@@ -167,6 +172,7 @@ jobs: | |
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: stable | ||
flutter-version-file: app/pubspec.yaml | ||
- run: flutter build ios --no-codesign | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1137,4 +1137,4 @@ packages: | |
version: "0.0.3+1" | ||
sdks: | ||
dart: ">=3.6.0 <4.0.0" | ||
flutter: ">=3.27.0" | ||
flutter: ">=3.27.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters