Skip to content

Commit bb4be8f

Browse files
committed
use two different build artifacts for dev/live APKs
1 parent d26f8df commit bb4be8f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/android-build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,21 @@ jobs:
5757
- name: Upload APK Artifacts
5858
uses: actions/upload-artifact@v4
5959
with:
60-
name: android-debug-apks
60+
name: app-live-debug.apk.zip
6161
# This path covers standard React Native output locations
6262
path: |
63-
android/app/build/outputs/apk/dev/debug/*.apk
6463
android/app/build/outputs/apk/live/debug/*.apk
6564
if-no-files-found: warn
6665
retention-days: 30
66+
- name: Upload APK Artifacts
67+
uses: actions/upload-artifact@v4
68+
with:
69+
name: app-dev-debug.apk.zip
70+
# This path covers standard React Native output locations
71+
path: |
72+
android/app/build/outputs/apk/dev/debug/*.apk
73+
if-no-files-found: warn
74+
retention-days: 30
6775

6876
- name: Upload APKs to Release
6977
uses: softprops/action-gh-release@v2

0 commit comments

Comments
 (0)