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 98ba489 commit 4f59cfeCopy full SHA for 4f59cfe
.github/workflows/build.yml
@@ -21,8 +21,16 @@ jobs:
21
with:
22
channel: 'stable'
23
24
- - run: echo -en "${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}" > android/key.properties
25
- - run: echo -en "${{ secrets.GOOGLE_PLAYSTORE_JKS_BASE64 }}" | base64 --decode > android/GooglePlaystore.jks
+ - env:
+ ANDROID_STORE_KEY_PROPERTIES: |
26
+ ${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}
27
+ run: echo -ne "$ANDROID_STORE_KEY_PROPERTIES" > android/key.properties
28
+
29
30
+ GOOGLE_PLAYSTORE_JKS_BASE64: |
31
+ ${{ secrets.GOOGLE_PLAYSTORE_JKS_BASE64 }}
32
+ run: echo -ne "$GOOGLE_PLAYSTORE_JKS_BASE64" | base64 --decode > android/GooglePlaystore.jks
33
34
- run: pwd
35
- run: wc android/key.properties
36
- run: TEST=$(grep storeFile android/key.properties)
0 commit comments