Skip to content

Commit af000e3

Browse files
committed
update workflow to build release APK instead of debug APK
1 parent ba9187a commit af000e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/android.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
build:
30-
name: Build debug APK
30+
name: Build release APK
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v3
@@ -42,13 +42,13 @@ jobs:
4242
- name: Grant execute permissions for gradlew
4343
run: chmod +x gradlew
4444

45-
- name: Build debug apk
45+
- name: Build release apk
4646
uses: gradle/gradle-build-action@v2
4747
with:
48-
arguments: assembleDebug
48+
arguments: assembleRelease
4949

5050
- name: Upload APK
5151
uses: actions/upload-artifact@v4
5252
with:
53-
name: apk-debug
54-
path: app/build/outputs/apk/debug
53+
name: apk-release
54+
path: app/build/outputs/apk/release

0 commit comments

Comments
 (0)