Skip to content

Commit

Permalink
[chore] : secret 변수명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun2371 committed Dec 17, 2024
1 parent e8de595 commit 618968f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd_dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 개발 서버 자동 배포
name: Dev Server Deploy

on:
push:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: main 경로 application.yml 파일 생성
run: |
mkdir -p ./src/main/resources
echo "${{ secrets.MAIN_APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml
echo "${{ secrets.APPLICATION_YML_DEV }}" | base64 -d > ./src/main/resources/application.yml
- name: gradle 권한 부여
run: chmod +x ./gradlew
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cd_prod.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 운영 서버 자동 배포
name: Prod Server Deploy

on:
push:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: main 경로 application.yml 파일 생성
run: |
mkdir -p ./src/main/resources
echo "${{ secrets.PROD_APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml
echo "${{ secrets.APPLICATION_YML_PROD }}" | base64 -d > ./src/main/resources/application.yml
- name: gradle 권한 부여
run: chmod +x ./gradlew
Expand Down

0 comments on commit 618968f

Please sign in to comment.