Skip to content

Commit 86a9c4a

Browse files
committed
fix: typo jsk -> jks in release signing step
1 parent cac2f3e commit 86a9c4a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/buildRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232

3333
- name: Setup APK signing
3434
run: |
35-
echo -n ${{ secrets.SIGNING_KEY }} | base64 -d > app/storeFile.jsk
36-
echo storeFile=storeFile.jsk > custom.properties
35+
echo -n ${{ secrets.SIGNING_KEY }} | base64 -d > app/storeFile.jks
36+
echo storeFile=storeFile.jks > custom.properties
3737
echo storePassword=${{ secrets.KEY_STORE_PASSWORD }} >> custom.properties
3838
echo keyAlias=${{ secrets.ALIAS }} >> custom.properties
3939
echo keyPassword=${{ secrets.KEY_PASSWORD }} >> custom.properties

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,4 @@ key.properties
5151
app/release/output-metadata.json
5252

5353
*.md
54+
keystore_base64.txt

0 commit comments

Comments
 (0)