Skip to content

Commit 8878ebe

Browse files
committed
Upload build artifacts
1 parent ba31629 commit 8878ebe

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/android-build.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,17 @@ jobs:
2121
- name: Build APK
2222
run: ./gradlew assembleRelease
2323

24+
- name: Upload APK artifacts
25+
uses: actions/upload-artifact@v4
26+
with:
27+
name: apks
28+
path: "app/build/outputs/apk/release/*.apk"
29+
2430
- name: Bulid bundle
2531
run: ./gradlew bundleRelease --warning-mode all
32+
33+
- name: Upload bundle artifacts
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: bundles
37+
path: "app/build/outputs/bundle/release/*.aab"

0 commit comments

Comments
 (0)