Skip to content

Commit d7f6870

Browse files
Fix signing key store path in GitHub Actions workflow
1 parent 97da0cc commit d7f6870

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
- name: Decode Properties
3535
env:
3636
ENCODED_STRING: ${{ secrets.KEYSTORE_PROPERTIES_BASE64 }}
37-
SIGNING_KEY_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }}
37+
SIGNING_PROPERTIES_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }}
3838

3939
run: |
40-
echo $ENCODED_STRING > keystore-b64.txt
41-
base64 -d keystore-b64.txt > $SIGNING_KEY_STORE_PATH
40+
echo $ENCODED_STRING > properties-b64.txt
41+
base64 -d properties-b64.txt > $SIGNING_PROPERTIES_STORE_PATH
4242
4343
- name: Build Release apk
4444
run: ./gradlew assembleRelease

0 commit comments

Comments
 (0)