Skip to content

Commit 8b31ba6

Browse files
committed
use main channel for linux arm64
1 parent 4393c7d commit 8b31ba6

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/flutter.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,20 @@ jobs:
9292
- ubuntu-latest
9393
- ubuntu-24.04-arm
9494
- 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
95101
fail-fast: false
96102
steps:
97103
- uses: actions/checkout@v4
98104

99105
- uses: subosito/flutter-action@v2
100106
with:
101107
cache: true
102-
channel: stable
108+
channel: ${{ matrix.channel || "stable" }}
103109
flutter-version: ${{ env.FLUTTER_VERSION }}
104110

105111
- name: Install dependencies

0 commit comments

Comments
 (0)