Skip to content

Commit f96b187

Browse files
committed
CI: include unsigned release APKS in CI build
1 parent 45c8760 commit f96b187

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/android.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,16 @@ jobs:
2929
uses: gradle/actions/[email protected]
3030

3131
- name: Build with gradle
32-
run: ./gradlew assembleDebug
32+
run: ./gradlew assemble
3333

3434
- name: Upload debug apks
3535
uses: actions/[email protected]
3636
with:
3737
name: app-debug
3838
path: app/build/outputs/apk/debug
39+
40+
- name: Upload release apks
41+
uses: actions/[email protected]
42+
with:
43+
name: app-release
44+
path: app/build/outputs/apk/release

.idea/kotlinc.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/release/app-release.apk

0 Bytes
Binary file not shown.

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
agp = "8.12.0-alpha06"
2+
agp = "8.12.0-alpha07"
33
biometric = "1.4.0-alpha02"
44
kotlin = "2.2.0"
55
coreKtx = "1.16.0"

0 commit comments

Comments
 (0)