We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 863a206 commit 87acef2Copy full SHA for 87acef2
.github/workflows/android-ci.yml
@@ -54,6 +54,16 @@ jobs:
54
files: ./build/reports/jacoco/jacocoTestReport.xml
55
token: ${{ secrets.CODECOV_TOKEN }}
56
57
+ - name: Sign app APK
58
+ uses: ilharp/sign-android-release@nightly
59
+ id: sign_app
60
+ with:
61
+ releaseDir: app/build/outputs/apk/release
62
+ signingKey: ${{ secrets.ANDROID_SIGNING_KEY }}
63
+ keyAlias: ${{ secrets.ANDROID_KEY_ALIAS }}
64
+ keyStorePassword: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }}
65
+ buildToolsVersion: 35.0.0
66
+
67
# Publish APK to GitHub Releases only on main branch
68
- name: Publish to GitHub Releases
69
if: github.ref == 'refs/heads/main'
0 commit comments