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 0f563a6 commit 22700b8Copy full SHA for 22700b8
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
7
workflow_dispatch:
8
inputs:
9
release:
10
- description: 'Create a release'
+ description: 'Create a nightly release'
11
required: true
12
type: boolean
13
default: false
@@ -52,6 +52,8 @@ jobs:
52
run: mv "./Debug APK/debug/"*.apk "./$APK_NAME"
53
- name: Decode keystore file
54
run: echo "${{ secrets.DEBUG_KEYSTORE_FILE }}" | base64 --decode > debug.keystore
55
+ - name: Install apksigner
56
+ run: sudo apt-get update && sudo apt-get install -y apksigner
57
- name: Sign APK
58
run: |
59
apksigner sign --ks debug.keystore --ks-key-alias androiddebugkey --ks-pass pass:android --key-pass pass:android "./$APK_NAME"
0 commit comments