Skip to content

Commit 2b3d194

Browse files
committed
[BOOK-223] chore: local.properties, keystore.properties base64 인코딩 적용
1 parent f42a6bb commit 2b3d194

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/android-cd.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,10 @@ jobs:
3030
run: echo '${{ secrets.REED_JAVA_KEYSTORE }}' | base64 -d > ./reed.jks
3131

3232
- name: Generate local.properties
33-
run: |
34-
echo '${{ secrets.LOCAL_PROPERTIES }}' >> ./local.properties
33+
run: echo '${{ secrets.LOCAL_PROPERTIES }}' | base64 -d > ./local.properties
3534

3635
- name: Generate keystore.properties
37-
run: |
38-
echo '${{ secrets.KEYSTORE_PROPERTIES }}' >> ./keystore.properties
36+
run: echo '${{ secrets.KEYSTORE_PROPERTIES }}' | base64 -d > ./keystore.properties
3937

4038
- name: Generate google-services.json
4139
run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 -d > ./app/google-services.json

.github/workflows/android-ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,10 @@ jobs:
3636
gradle-home-cache-cleanup: true
3737

3838
- name: Generate local.properties
39-
run: |
40-
echo '${{ secrets.LOCAL_PROPERTIES }}' >> ./local.properties
39+
run: echo '${{ secrets.LOCAL_PROPERTIES }}' | base64 -d > ./local.properties
4140

4241
- name: Generate keystore.properties
43-
run: |
44-
echo '${{ secrets.KEYSTORE_PROPERTIES }}' >> ./keystore.properties
42+
run: echo '${{ secrets.KEYSTORE_PROPERTIES }}' | base64 -d > ./keystore.properties
4543

4644
- name: Generate google-services.json
4745
run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 -d > ./app/google-services.json

0 commit comments

Comments
 (0)