Skip to content

Commit 1ed8d26

Browse files
authored
Refactor google-cloud-platform.json creation command
Update the command to create google-cloud-platform.json to avoid base64 decoding.
1 parent fcf5a1a commit 1ed8d26

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/android-production-deploy-play-store.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Create google-cloud-platform.json
3030
env:
3131
DATA: ${{ secrets.GOOGLE_CLOUD_PLATFORM }}
32-
run: echo $DATA | base64 --decode > /home/runner/work/JOBIS-ANDROID-V2/JOBIS-ANDROID-V2/app/src/main/play/google-cloud-platform.json
32+
run: |
33+
echo "$DATA" > app/src/main/play/google-cloud-platform.json
3334
3435
- name: Create local.properties
3536
run: |

0 commit comments

Comments
 (0)