Skip to content

Commit d37a686

Browse files
committed
Update release.yml
1 parent e1d3d9f commit d37a686

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,16 @@ jobs:
161161
distribution: 'temurin'
162162
cache: gradle
163163

164+
- name: Create signing.properties
165+
run: |
166+
echo -n ${{ secrets.KEYSTORE_SIGNING_KEY }} > /tmp/keystore.txt && base64 -d /tmp/keystore.txt > /tmp/keystore.key
167+
cat << EOF > android/signing.properties
168+
storeFilePath=/tmp/keystore.key
169+
storePassword=${{ secrets.KEYSTORE_PASSWORD }}
170+
keyPassword=${{ secrets.KEYSTORE_PASSWORD }}
171+
keyAlias=${{ secrets.KEYSTORE_ALIAS }}
172+
EOF
173+
164174
- name: Grant execute permission for gradlew
165175
run: chmod +x android/gradlew
166176

0 commit comments

Comments
 (0)