We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1d3d9f commit d37a686Copy full SHA for d37a686
.github/workflows/release.yml
@@ -161,6 +161,16 @@ jobs:
161
distribution: 'temurin'
162
cache: gradle
163
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
+
174
- name: Grant execute permission for gradlew
175
run: chmod +x android/gradlew
176
0 commit comments