Skip to content

Commit 1697b5b

Browse files
CI bug fixes.
1 parent 282b3a7 commit 1697b5b

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/build-debug.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ jobs:
2323
distribution: 'temurin'
2424
java-version: '17'
2525

26+
- name: Create Keystore
27+
run: |
28+
echo "${{ secrets.SIGNING_KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
29+
30+
- name: Create Keystore Properties File
31+
run: |
32+
cat <<EOF > keystore.properties
33+
storePassword=${{ secrets.SIGNING_STORE_PASSWORD }}
34+
keyPassword=${{ secrets.SIGNING_KEY_PASSWORD }}
35+
keyAlias=${{ secrets.SIGNING_KEY_ALIAS }}
36+
storeFile=keystore.jks
37+
EOF
38+
2639
- name: Grant execute permission for gradlew
2740
run: chmod +x ./gradlew
2841

0 commit comments

Comments
 (0)