Fixes Keystore Location
Some checks are pending
Android Release / release (push) Has started running

This commit is contained in:
2026-01-18 00:35:54 +03:00
parent f9bbd337dc
commit ba142431b6

View File

@@ -46,7 +46,8 @@ jobs:
- name: Decode keystore
run: |
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > release.keystore
mkdir -p app
echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > app/release.keystore
- name: Make Gradlew executable
run: chmod +x ./gradlew
@@ -74,7 +75,7 @@ jobs:
run: |
VERSION=$(cat version.txt)
./gradlew assembleRelease \
-Pandroid.injected.signing.store.file=release.keystore \
-Pandroid.injected.signing.store.file=app/release.keystore \
-Pandroid.injected.signing.store.password=$KEYSTORE_PASSWORD \
-Pandroid.injected.signing.key.alias=$KEY_ALIAS \
-Pandroid.injected.signing.key.password=$KEY_PASSWORD