Fixed APk sign (hopefully)

This commit is contained in:
yairm210 2021-09-02 21:21:05 +03:00
parent 7c3f8ce661
commit 0389945ab1

View File

@ -85,7 +85,7 @@ jobs:
mv android/build/outputs/apk/release/Unciv-release-unsigned.apk deploy/Unciv.apk
- name: Sign app APK
- name: Sign AAB for Google Play upload
uses: r0adkll/sign-android-release@v1
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
with:
@ -95,12 +95,12 @@ jobs:
keyStorePassword: ${{ secrets.BUNDLE_SIGNING_KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.BUNDLE_SIGNING_KEY_PASSWORD }}
- name: Sign app APK
- name: Sign APK for Github upload
uses: r0adkll/sign-android-release@v1
continue-on-error: true
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
with:
releaseDirectory: android/build/outputs/apk/release
releaseDirectory: deploy
signingKeyBase64: ${{ secrets.BUNDLE_SIGNING_KEY_BASE64 }}
alias: ${{ secrets.BUNDLE_SIGNING_KEY_ALIAS }}
keyStorePassword: ${{ secrets.BUNDLE_SIGNING_KEYSTORE_PASSWORD }}