Skip to content

Commit

Permalink
Merge pull request #399 from twenty-three-23/feature/TT-486
Browse files Browse the repository at this point in the history
TT-486
  • Loading branch information
ch8930 authored Nov 11, 2024
2 parents c13cfbf + 87ba028 commit 10ea2b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Set up FCM server key
run: |
cd ./src/main/resources/
echo "${{ secrets.FCM_SECRET_KEY }}" > ./peech_fcm.json
echo "${{ secrets.FCM_SECRET_KEY }}" | base64 --decode > ./peech_fcm.json
# 2. Spring Boot 애플리케이션 빌드
- name: Build with Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Set up FCM server key
run: |
cd ./src/main/resources/
echo "${{ secrets.FCM_SECRET_KEY }}" > ./peech_fcm.json
echo "${{ secrets.FCM_SECRET_KEY }}" | base64 --decode > ./peech_fcm.json
# 2. Spring Boot 애플리케이션 빌드
- name: Build with Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Set up FCM server key
run: |
cd ./src/main/resources/
echo "${{ secrets.FCM_SECRET_KEY }}" > ./peech_fcm.json
echo "${{ secrets.FCM_SECRET_KEY }}" | base64 --decode > ./peech_fcm.json
# 2. Spring Boot 애플리케이션 빌드
- name: Build with Gradle
Expand Down

0 comments on commit 10ea2b7

Please sign in to comment.