File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments