Skip to content

Commit 4f59cfe

Browse files
authored
Update build.yml
Signed-off-by: Werner Fleischer <70745309+wfleischer@users.noreply.github.com>
1 parent 98ba489 commit 4f59cfe

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,16 @@ jobs:
2121
with:
2222
channel: 'stable'
2323

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
24+
- env:
25+
ANDROID_STORE_KEY_PROPERTIES: |
26+
${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}
27+
run: echo -ne "$ANDROID_STORE_KEY_PROPERTIES" > android/key.properties
28+
29+
- env:
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+
2634
- run: pwd
2735
- run: wc android/key.properties
2836
- run: TEST=$(grep storeFile android/key.properties)

0 commit comments

Comments
 (0)