Skip to content

Commit

Permalink
feat: 배포 시 FCM 서비스 계정 키 파일 생성 STEP 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
peeerr committed Oct 22, 2024
1 parent 14e8eca commit 6893f49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/master_weekly_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
distribution: 'corretto'
java-version: '21'

- name: FCM 서비스 계정 키 파일 생성
run: |
echo '${{ secrets.FCM_SERVICE_ACCOUNT_KEY }}' > ./src/main/resources/everymoment.json
- name: AWS S3 관련 정보를 설정 파일에 주입
uses: microsoft/variable-substitution@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr_weekly_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ jobs:
distribution: 'corretto'
java-version: '21'

- name: FCM 서비스 계정 키 파일 생성
run: |
echo '${{ secrets.FCM_SERVICE_ACCOUNT_KEY }}' > ./src/main/resources/everymoment.json
- name: AWS S3 관련 정보를 설정 파일에 주입
uses: microsoft/variable-substitution@v1
with:
Expand Down

0 comments on commit 6893f49

Please sign in to comment.