Skip to content

Commit

Permalink
Update pr-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Sep 15, 2023
1 parent a65c150 commit f97e5c5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,13 @@ jobs:
- name: Generate keystore
run: |
keytool -genkey -v -keystore debugkey.jks -alias androiddebugkey -storepass android -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "O=ReVanced"
openssl base64 < debugkey.jks | tr -d '\n' | tee debugkey.jks.base64.txt
- name: Sign APK
id: sign_apk
uses: ilharp/sign-android-release@v1
with:
releaseDir: app/build/outputs/apk/release
signingKey: $(cat debugkey.jks.base64.txt)
signingKey: $(openssl base64 debugkey.jks | tr -d '\n\r')
keyAlias: androiddebugkey
keyStorePassword: android
keyPassword: android
Expand Down

0 comments on commit f97e5c5

Please sign in to comment.