Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix stable flutter version #227

Merged
merged 6 commits into from
Jan 25, 2023
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 40 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,15 @@ jobs:
run: echo DESTINY_VERSION=${{ github.head_ref }} >> $GITHUB_ENV
if: ${{ github.ref_type != 'tag' }}

# https://docs.flutter.dev/development/tools/sdk/releases?tab=linux
- name: "Setup flutter"
uses: "subosito/[email protected]"
uses: subosito/flutter-action@v2
with:
# set fixed stable version, to avoid surprises, when flutter upgrades
flutter-version: '3.3.10'
channel: 'stable'

- run: flutter --version

- name: "Fetch flutter dependencies"
run: "flutter pub get"
Expand Down Expand Up @@ -77,8 +84,15 @@ jobs:
run: echo DESTINY_VERSION=${{ github.head_ref }} >> $GITHUB_ENV
if: ${{ github.ref_type != 'tag' }}

# https://docs.flutter.dev/development/tools/sdk/releases?tab=linux
- name: "Setup flutter"
uses: "subosito/[email protected]"
uses: subosito/flutter-action@v2
with:
# set fixed stable version, to avoid surprises, when flutter upgrades
flutter-version: '3.3.10'
donpui marked this conversation as resolved.
Show resolved Hide resolved
channel: 'stable'

- run: flutter --version

- name: "Fetch flutter dependencies"
run: "flutter pub get"
Expand Down Expand Up @@ -155,8 +169,15 @@ jobs:
run: echo DESTINY_VERSION=${{ github.head_ref }} >> $GITHUB_ENV
if: ${{ github.ref_type != 'tag' }}

# https://docs.flutter.dev/development/tools/sdk/releases?tab=linux
- name: "Setup flutter"
uses: "subosito/[email protected]"
uses: subosito/flutter-action@v2
with:
# set fixed stable version, to avoid surprises, when flutter upgrades
flutter-version: '3.3.10'
channel: 'stable'

- run: flutter --version

- name: "Fetch flutter dependencies"
run: "flutter pub get"
Expand Down Expand Up @@ -213,8 +234,15 @@ jobs:
run: echo DESTINY_VERSION=${{ github.head_ref }} >> $GITHUB_ENV
if: ${{ github.ref_type != 'tag' }}

# https://docs.flutter.dev/development/tools/sdk/releases?tab=linux
- name: "Setup flutter"
uses: "subosito/[email protected]"
uses: subosito/flutter-action@v2
with:
# set fixed stable version, to avoid surprises, when flutter upgrades
flutter-version: '3.3.10'
channel: 'stable'

- run: flutter --version

- name: "Fetch flutter dependencies"
run: "flutter pub get"
Expand Down Expand Up @@ -249,8 +277,15 @@ jobs:
run: 'echo "DESTINY_VERSION=${{ github.head_ref }}" >> $env:GITHUB_ENV'
if: ${{ github.ref_type != 'tag' }}

# https://docs.flutter.dev/development/tools/sdk/releases?tab=linux
- name: "Setup flutter"
uses: "subosito/[email protected]"
uses: subosito/flutter-action@v2
with:
# set fixed stable version, to avoid surprises, when flutter upgrades
flutter-version: '3.3.10'
channel: 'stable'

- run: flutter --version

- name: "Fetch flutter dependencies"
run: "flutter pub get"
Expand Down