Skip to content

Commit 8065548

Browse files
authored
Add artifact upload steps for APK files (#13)
* Add artifact upload steps for APK files * Update APK paths in Android build workflow * Rename and update paths for glass-xe apk upload
1 parent 3d1afa4 commit 8065548

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/android_build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,21 @@ jobs:
3030

3131
- name: Build with Gradle
3232
run: ./gradlew assemble --parallel
33+
34+
- name: Upload mobile apk
35+
uses: actions/upload-artifact@v4
36+
with:
37+
name: mobile.apk
38+
path: mobile/build/outputs/apk/release/mobile-release.apk
39+
40+
- name: Upload glass-xe apk
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: glass-xe.apk
44+
path: glass-xe/build/outputs/apk/release/glass-xe-release.apk
45+
46+
- name: Upload glass-ee apk
47+
uses: actions/upload-artifact@v4
48+
with:
49+
name: glass-ee.apk
50+
path: glass-ee/build/outputs/apk/release/glass-ee-release.apk

0 commit comments

Comments
 (0)