Skip to content

Commit

Permalink
keystore issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shub39 committed Aug 11, 2024
1 parent 147be73 commit f67145b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
java-version: '17'

- name: Download keystore
run: echo "${{ secrets.KEYSTORE_FILE }}" | base64 --decode > android/app/keystore.jks
run: echo "${{ secrets.KEYSTORE_FILE }}" | base64 --decode > keystore.jks

- name: Build and sign the app
run: ./gradlew assembleRelease

- name: Sign the APK
run: |
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 \
-keystore android/app/keystore.jks \
-keystore keystore.jks \
-storepass $KEYSTORE_PASSWORD \
-keypass $KEY_PASSWORD \
android/app/build/outputs/apk/release/app-release-unsigned.apk \
Expand Down

0 comments on commit f67145b

Please sign in to comment.