Skip to content

Commit df2f43d

Browse files
committed
upload all apks
1 parent c31b05b commit df2f43d

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

.github/workflows/test.yml

+18-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,23 @@ jobs:
2525
- name: Build Android Release
2626
run: |
2727
NODE_OPTIONS=--openssl-legacy-provider npm run build-android
28-
- name: Upload Artifact
28+
- name: Upload Artifact (x86)
2929
uses: actions/upload-artifact@v1
3030
with:
31-
name: app-release.apk
32-
path: android/app/build/outputs/apk/release/
31+
name: app-x86-debug.apk
32+
path: android/app/build/outputs/apk/debug/
33+
- name: Upload Artifact (x64)
34+
uses: actions/upload-artifact@v1
35+
with:
36+
name: app-x86_64-debug.apk
37+
path: android/app/build/outputs/apk/debug/
38+
- name: Upload Artifact (armeabi)
39+
uses: actions/upload-artifact@v1
40+
with:
41+
name: app-armeabi-v7a-debug.apk
42+
path: android/app/build/outputs/apk/debug/
43+
- name: Upload Artifact (arm64)
44+
uses: actions/upload-artifact@v1
45+
with:
46+
name: app-arm64-v8a-debug.apk
47+
path: android/app/build/outputs/apk/debug/

0 commit comments

Comments
 (0)