Skip to content

Commit 577712b

Browse files
committed
exclude x86_64 from builds
1 parent 1449cbf commit 577712b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ jobs:
8888
8989
- name: Build APK
9090
working-directory: app
91-
run: flutter build apk --release --split-per-abi --no-tree-shake-icons
91+
run: flutter build apk --release --target-platform android-arm,android-arm64 --split-per-abi --no-tree-shake-icons
9292

9393
- name: Build App Bundle
9494
if: steps.build-type.outputs.is_prerelease == 'false'
9595
working-directory: app
96-
run: flutter build appbundle --no-tree-shake-icons
96+
run: flutter build appbundle --target-platform android-arm,android-arm64 --no-tree-shake-icons
9797

9898
- name: Create github artifact release (Prerelease)
9999
if: steps.build-type.outputs.is_prerelease == 'true'

0 commit comments

Comments
 (0)