Skip to content

Commit e74a65c

Browse files
committed
ci: try using master for arm flutter install
1 parent 33a5805 commit e74a65c

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/actions/flutter_build/action.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,24 @@ runs:
3737
override: true
3838
profile: minimal
3939

40-
- name: Install flutter
40+
- name: Install flutter non-arm
41+
if: ${{ flutter-profile != "development-linux-aarch64" }}
4142
id: flutter
4243
uses: subosito/flutter-action@v2
4344
with:
4445
channel: "stable"
4546
flutter-version: ${{ inputs.flutter_version }}
4647
cache: true
4748

49+
- name: Install flutter arm
50+
if: ${{ flutter-profile == "development-linux-aarch64" }}
51+
id: flutter
52+
uses: subosito/flutter-action@v2
53+
with:
54+
channel: "master"
55+
flutter-version: ${{ inputs.flutter_version }}
56+
cache: true
57+
4858
- uses: Swatinem/rust-cache@v2
4959
with:
5060
prefix-key: ${{ inputs.os }}

0 commit comments

Comments
 (0)