Skip to content

Commit 1b37672

Browse files
committed
fix/#77: google-services.json 인코딩 과정 추가
1 parent 516d22a commit 1b37672

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/android-ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
- name: Decode Keystore
4040
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
4141

42+
- name: Decode google-services.json
43+
run: echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json
44+
4245
- name: Configure Gradle
4346
uses: gradle/actions/setup-gradle@v3
4447

.github/workflows/distribute.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ jobs:
5757
- name: Decode Keystore
5858
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 --decode > keystore.jks
5959

60+
- name: Decode google-services.json
61+
run: echo "${{ secrets.GOOGLE_SERVICES_JSON_BASE64 }}" | base64 --decode > app/google-services.json
62+
6063
- name: Decode Firebase Service Account
6164
run: echo "${{ secrets.FIREBASE_SERVICE_ACCOUNT_BASE64 }}" | base64 --decode > app/firebase-service-account.json
6265

0 commit comments

Comments
 (0)