Skip to content

Commit

Permalink
[chore] : test용과 main용 application.yml 구분 위해 secret 변수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun2371 committed Aug 3, 2024
1 parent b420edb commit 6d01743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
java-version: '17'
distribution: 'temurin'

# yml 파일 생성
# main 경로 application.yml 파일 생성
- name: Generate application.yml
run: |
mkdir -p ./src/main/resources
echo "${{ secrets.APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml
echo "${{ secrets.MAIN_APPLICATION_YML }}" | base64 -d > ./src/main/resources/application.yml
# gradle 권한 부여
- name: Grant execute permission for gradlew
Expand Down

0 comments on commit 6d01743

Please sign in to comment.