-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 additions
and
5 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 |
---|---|---|
|
@@ -37,15 +37,18 @@ jobs: | |
run: echo "prerelease=true" >> $GITHUB_ENV | ||
|
||
- name: Setup Flutter | ||
uses: subosito/[email protected] | ||
uses: subosito/[email protected] | ||
# Specify the Flutter version to work around bug in new version: | ||
# https://github.com/flutter/flutter/issues/144873 | ||
with: | ||
flutter-version: '3.19.6' | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Prepare for build | ||
run: | | ||
flutter config --enable-linux-desktop | ||
flutter upgrade | ||
flutter pub get | ||
# ----------------------------------- Build ---------------------------- # | ||
|
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 |
---|---|---|
|
@@ -30,15 +30,18 @@ jobs: | |
run: echo "prerelease=true" >> $GITHUB_ENV | ||
|
||
- name: Setup Flutter | ||
uses: subosito/[email protected] | ||
uses: subosito/[email protected] | ||
# Specify the Flutter version to work around bug in new version: | ||
# https://github.com/flutter/flutter/issues/144873 | ||
with: | ||
flutter-version: '3.19.6' | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Prepare for build | ||
run: | | ||
flutter config --enable-windows-desktop | ||
flutter upgrade | ||
flutter pub get | ||
# ----------------------------------- Build ---------------------------- # | ||
|
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 |
---|---|---|
|
@@ -16,6 +16,10 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: subosito/[email protected] | ||
# Specify the Flutter version to work around bug in new version: | ||
# https://github.com/flutter/flutter/issues/144873 | ||
with: | ||
flutter-version: '3.19.6' | ||
|
||
- name: Get Linux dependencies | ||
if: runner.os == 'Linux' | ||
|
@@ -26,7 +30,6 @@ jobs: | |
- name: Setup | ||
run: | | ||
flutter upgrade | ||
flutter pub get | ||
- name: Verify formatting | ||
|