Skip to content

Commit

Permalink
Update pr-build-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko authored Sep 3, 2023
1 parent bea8cf1 commit 2017d21
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/pr-build-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,18 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew assembleRelease --no-daemon

- name: Sign APK
id: sign_apk
uses: ilharp/sign-android-release@v1
with:
releaseDir: app/build/outputs/apk/release
signingKey: ${{ secrets.SIGNING_KEYSTORE }}
keyStorePassword: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
keyAlias: ${{ secrets.SIGNING_KEY_ALIAS }}
keyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}

- name: Upload build
uses: actions/upload-artifact@v3
with:
name: revanced-manager-compose
path: app/build/outputs/release/app-release.apk
path: ${{steps.sign_apk.outputs.signedFile}}

0 comments on commit 2017d21

Please sign in to comment.