Skip to content

Commit 89dfc16

Browse files
Add keys copying step in GitHub Actions workflow
Add step to copy signing keys and properties in workflow
1 parent 6301aae commit 89dfc16

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/github-actions.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
echo $ENCODED_STRING > properties-b64.txt
4141
base64 -i -d properties-b64.txt > $SIGNING_PROPERTIES_STORE_PATH
4242
43+
- name: Copy Keys
44+
run: |
45+
cp $SIGNING_KEY_STORE_PATH ./app/$SIGNING_KEY_STORE_PATH
46+
cp $SIGNING_PROPERTIES_STORE_PATH ./app/$SIGNING_PROPERTIES_STORE_PATH
47+
4348
- name: Build Release apk
4449
run: ./gradlew assembleRelease
4550

0 commit comments

Comments
 (0)