Skip to content

Commit fab32b8

Browse files
committed
[CHORE/#217] app/src/dev 폴더가 존재하지 않으면 만들도록 CI/CD 스크립트 수정
1 parent ca480f5 commit fab32b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/android_cd.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
- name: Decode google-services.json (debug)
5050
env:
5151
FIREBASE_SECRET: ${{ secrets.FIREBASE_SECRET_DEBUG }}
52-
run: echo $FIREBASE_SECRET | base64 --decode > app/src/dev/google-services.json
52+
run: |
53+
mkdir -p app/src/dev
54+
echo $FIREBASE_SECRET | base64 --decode > app/src/dev/google-services.json
5355
5456
# 7. Decode google-services.json for release
5557
- name: Decode google-services.json (release)

.github/workflows/android_ci.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,16 @@ jobs:
4646
- name: Decode google-services.json (debug)
4747
env:
4848
FIREBASE_SECRET: ${{ secrets.FIREBASE_SECRET_DEBUG }}
49-
run: echo $FIREBASE_SECRET | base64 --decode > app/src/dev/google-services.json
49+
run: |
50+
mkdir -p app/src/dev
51+
echo $FIREBASE_SECRET | base64 --decode > app/src/dev/google-services.json
5052
5153
# Decode google-services.json for release
5254
- name: Decode google-services.json (release)
5355
env:
5456
FIREBASE_SECRET: ${{ secrets.FIREBASE_SECRET_RELEASE }}
5557
run: echo $FIREBASE_SECRET | base64 --decode > app/google-services.json
5658

57-
# Debug google-services.json
58-
- name: Debug google-services.json
59-
run: cat app/google-services.json
60-
6159
# Add Local Properties
6260
- name: Add Local Properties
6361
env:

0 commit comments

Comments
 (0)