We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33a5805 commit e74a65cCopy full SHA for e74a65c
.github/actions/flutter_build/action.yml
@@ -37,14 +37,24 @@ runs:
37
override: true
38
profile: minimal
39
40
- - name: Install flutter
+ - name: Install flutter non-arm
41
+ if: ${{ flutter-profile != "development-linux-aarch64" }}
42
id: flutter
43
uses: subosito/flutter-action@v2
44
with:
45
channel: "stable"
46
flutter-version: ${{ inputs.flutter_version }}
47
cache: true
48
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
+
58
- uses: Swatinem/rust-cache@v2
59
60
prefix-key: ${{ inputs.os }}
0 commit comments