We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4393c7d commit 8b31ba6Copy full SHA for 8b31ba6
1 file changed
.github/workflows/flutter.yml
@@ -92,14 +92,20 @@ jobs:
92
- ubuntu-latest
93
- ubuntu-24.04-arm
94
- macos-latest
95
+ include:
96
+ # we need to use the main channel,
97
+ # as flutter does apparently not officially release SDKs for arm64 linux.
98
+ # see: https://storage.googleapis.com/flutter_infra_release/releases/releases_linux.json
99
+ - runner: ubuntu-24.04-arm
100
+ channel: main
101
fail-fast: false
102
steps:
103
- uses: actions/checkout@v4
104
105
- uses: subosito/flutter-action@v2
106
with:
107
cache: true
- channel: stable
108
+ channel: ${{ matrix.channel || "stable" }}
109
flutter-version: ${{ env.FLUTTER_VERSION }}
110
111
- name: Install dependencies
0 commit comments