Skip to content

Commit 1818950

Browse files
authored
Update build_release.yml
1 parent 9b47873 commit 1818950

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/build_release.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,19 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9+
# - name: Decode Keystore
10+
# id: decode_keystore
11+
# uses: timheuer/base64-to-file@v1
12+
# with:
13+
# fileName: 'keystore/your_signing_keystore.jks'
14+
# encodedString: ${{ secrets.KEYSTORE }}
915
- name: Decode Keystore
10-
id: decode_keystore
11-
uses: timheuer/base64-to-file@v1
12-
with:
13-
fileName: 'keystore/your_signing_keystore.jks'
14-
encodedString: ${{ secrets.KEYSTORE }}
16+
env:
17+
ENCODED_STRING: ${{ secrets.KEYSTORE }}
18+
run: |
19+
TMP_KEYSTORE_FILE_PATH="${RUNNER_TEMP}"/keystore
20+
mkdir "${TMP_KEYSTORE_FILE_PATH}"
21+
echo $ENCODED_STRING | base64 -di > "${TMP_KEYSTORE_FILE_PATH}"/aisdv1.jks
1522
- uses: actions/checkout@v2
1623
- name: set up JDK 11.0.15
1724
uses: actions/setup-java@v1

0 commit comments

Comments
 (0)