Skip to content

Commit

Permalink
update keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
aylz10 committed Jan 29, 2024
1 parent d57c0e2 commit 4490936
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-pre-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ jobs:
- name: Signing properties
env:
ENCODED_KEYSTORE_BASE_64: ${{ secrets.KEYSTORE_BASE_64 }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
run: |
echo $ENCODED_KEYSTORE_BASE_64 > keystore-b64.txt
base64 -d keystore-b64.txt > release.keystore
touch signing.properties
echo keystore.password="$SIGNING_STORE_PASSWORD" > signing.properties
echo key.alias="$SIGNING_KEY_ALIAS" >> signing.properties
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,13 @@ jobs:
- name: Signing properties
env:
ENCODED_KEYSTORE_BASE_64: ${{ secrets.KEYSTORE_BASE_64 }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
run: |
echo $ENCODED_KEYSTORE_BASE_64 > keystore-b64.txt
base64 -d keystore-b64.txt > release.keystore
touch signing.properties
echo keystore.password="$SIGNING_STORE_PASSWORD" > signing.properties
echo key.alias="$SIGNING_KEY_ALIAS" >> signing.properties
Expand Down

0 comments on commit 4490936

Please sign in to comment.