Skip to content

Commit c607896

Browse files
Fix signing keys copy and update release status
Updated GitHub Actions workflow to copy signing keys correctly and changed release status to non-prerelease.
1 parent 89dfc16 commit c607896

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/github-actions.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ jobs:
4141
base64 -i -d properties-b64.txt > $SIGNING_PROPERTIES_STORE_PATH
4242
4343
- name: Copy Keys
44+
env:
45+
SIGNING_KEY_STORE_PATH: ${{ secrets.KEYSTORE_KEY_PATH }}
46+
SIGNING_PROPERTIES_STORE_PATH: ${{ secrets.KEYSTORE_PROPERTIES_PATH }}
4447
run: |
45-
cp $SIGNING_KEY_STORE_PATH ./app/$SIGNING_KEY_STORE_PATH
46-
cp $SIGNING_PROPERTIES_STORE_PATH ./app/$SIGNING_PROPERTIES_STORE_PATH
48+
cp $SIGNING_KEY_STORE_PATH app/$SIGNING_KEY_STORE_PATH
49+
cp $SIGNING_PROPERTIES_STORE_PATH app/$SIGNING_PROPERTIES_STORE_PATH
4750
4851
- name: Build Release apk
4952
run: ./gradlew assembleRelease
@@ -55,11 +58,14 @@ jobs:
5558
paths: |
5659
app/build/outputs/apk/release/
5760
61+
- name: List Outputs
62+
run: ls app/build/outputs/apk/release/
63+
5864
- name: Create Github Release
5965
uses: softprops/action-gh-release@v2
6066
if: github.ref_type == 'tag'
6167
with:
6268
generate_release_notes: true
63-
prerelease: true
69+
prerelease: false
6470
files: |
6571
app/build/outputs/apk/release/app-release.apk

0 commit comments

Comments
 (0)