Skip to content

Commit b76e09b

Browse files
committed
Move KEYSTORE_FILE out of app dir
This commit moves the `KEYSTORE_FILE` environment variable definition out of the `app/` directory in the Github Actions workflow. The path for decoding the keystore file is updated accordingly.
1 parent 92e6f1d commit b76e09b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
KEYSTORE_FILE: app/keystore-qrbarcode.jks
12+
KEYSTORE_FILE: keystore-qrbarcode.jks
1313
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASSWORD }}
1414
KEY_ALIAS: ${{ secrets.KEY_ALIAS }}
1515
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
@@ -51,7 +51,7 @@ jobs:
5151
bundle install
5252
5353
- name: Decode Keystore File
54-
run: echo "${{ secrets.KEYSTORE_FILE }}" | base64 -d > "${{ env.KEYSTORE_FILE }}"
54+
run: echo "${{ secrets.KEYSTORE_FILE }}" | base64 -d > "app/${{ env.KEYSTORE_FILE }}"
5555

5656
- name: Write local.properties
5757
run: |

0 commit comments

Comments
 (0)