We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 282b3a7 commit 1697b5bCopy full SHA for 1697b5b
1 file changed
.github/workflows/build-debug.yml
@@ -23,6 +23,19 @@ jobs:
23
distribution: 'temurin'
24
java-version: '17'
25
26
+ - name: Create Keystore
27
+ run: |
28
+ echo "${{ secrets.SIGNING_KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
29
+
30
+ - name: Create Keystore Properties File
31
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
39
- name: Grant execute permission for gradlew
40
run: chmod +x ./gradlew
41
0 commit comments