We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80ff32 commit af96a04Copy full SHA for af96a04
1 file changed
.github/workflows/build.yml
@@ -30,7 +30,7 @@ jobs:
30
- name: Decode Keystore
31
run: |
32
mkdir -p app/keystores
33
- echo "${{ secrets.KEYSTORE_FILE }}" | base64 -d > app/keystores/keystore.jks
+ echo "${{ secrets.KEYSTORE_FILE }}" | base64 -d > ${{ github.workspace }}/app/keystores/keystore.jks
34
chmod 600 app/keystores/keystore.jks
35
36
- name: Grant execute permission for gradlew
@@ -39,7 +39,7 @@ jobs:
39
- name: Build APK
40
run: ./gradlew assembleRelease --stacktrace
41
env:
42
- KEYSTORE_FILE: app/keystores/keystore.jks
+ KEYSTORE_FILE: ${{ github.workspace }}/app/keystores/keystore.jks
43
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
44
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
45
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
0 commit comments