File tree Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Expand file tree Collapse file tree 1 file changed +2
-12
lines changed Original file line number Diff line number Diff line change 21
21
with :
22
22
channel : ' stable'
23
23
24
- - name : Save the store key properties to android/key.properties
25
- env :
26
- ANDROID_STORE_KEY_PROPERTIES : ${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}
27
- run : |
28
- echo -en $ANDROID_STORE_KEY_PROPERTIES > android/key.properties
29
-
30
- - name : Decode the store key to android/GooglePlaystore.jks
31
- env :
32
- GOOGLE_PLAYSTORE_JKS_BASE64 : ${{ secrets.GOOGLE_PLAYSTORE_JKS_BASE64 }}
33
- run : |
34
- echo -en $GOOGLE_PLAYSTORE_JKS_BASE64 | base64 --decode > android/GooglePlaystore.jks
35
-
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
36
26
- run : pwd
37
27
- run : wc android/key.properties
38
28
- run : TEST=$(grep storeFile android/key.properties)
You can’t perform that action at this time.
0 commit comments