Skip to content

Commit e8a9bc0

Browse files
committed
feat: build only for armv7 and aarch64
1 parent f5f05ba commit e8a9bc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,14 @@ jobs:
8585
if: matrix.platform == 'ubuntu-22.04'
8686
run: |
8787
export NDK_HOME=$ANDROID_HOME/ndk/27.0.11902837
88-
npm run tauri android build
88+
npm run tauri android build -- -- --target armv7
89+
npm run tauri android build -- -- --target aarch64
8990
9091
- name: Push to release
9192
if: matrix.platform == 'ubuntu-22.04'
9293
uses: softprops/action-gh-release@v1
9394
with:
9495
tag_name: ${{ env.RELEASE_VERSION }}
9596
files: |
96-
src-tauri/gen/android/app/build/outputs/apk/release/*
97+
src-tauri/gen/android/app/build/outputs/apk/release/*
98+
src-tauri/gen/android/app/build/outputs/apk/universal/release/*

0 commit comments

Comments
 (0)