Skip to content

Commit 6ec7594

Browse files
committed
FEAT: CI 워크플로우 수정
1 parent d517180 commit 6ec7594

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci-for-test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,12 @@ jobs:
1212
- name: Check out Repository
1313
uses: actions/[email protected]
1414

15-
- name: Create google-services.json
16-
run: echo '{}' > app/google-services.json
15+
- name: Create Google Services JSON File
16+
env:
17+
GOOGLE_SERVICES_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
18+
run: |
19+
echo "$GOOGLE_SERVICES_JSON" > google-services.json.b64
20+
base64 -d -i google-services.json.b64 > ./app/google-services.json
1721
1822
- name: Create local.properties file
1923
run: touch local.properties

0 commit comments

Comments
 (0)