Skip to content

Commit

Permalink
Update Release workflow to use secret keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillt committed Dec 16, 2023
1 parent 397ae49 commit e2fd0ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1.0.5

- name: Decrypt the keystore for signing
run: |
echo "${{ secrets.KEYSTORE_ENCRYPTED }}" > keystore.asc
gpg -d --passphrase "${{ secrets.KEYSTORE_PASSWORD }}" --batch keystore.asc > keystore.jks
- name: Build Release APK
run: ./gradlew assembleRelease

Expand Down

0 comments on commit e2fd0ef

Please sign in to comment.