Skip to content

Commit

Permalink
Chore: yml 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
m020202 committed Aug 9, 2024
1 parent 5dc0790 commit 2ed5a50
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@ jobs:
distribution: temurin
java-version: 17

- name: application.yml 파일 생성
run: echo "${{ secrets.APPLICATION_PROPERTIES }}" > src/main/resources/application.yml

- name: application-jwt.yml 파일 생성
run: echo "${{ secrets.APPLICATION_JWT }}" > src/main/resources/application-jwt.yml

- name: application-oauth.yml 파일 생성
run: echo "${{ secrets.APPLICATION_OAUTH }}" > src/main/resources/application-oauth.yml
- name: yml 파일 생성
run: |
mkdir -p ./src/main/resources
echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.yml
echo "${{ secrets.APPLICATION_JWT }}" > ./src/main/resources/application-jwt.yml
echo "${{ secrets.APPLICATION_OAUTH }}" > ./src/main/resources/application-oauth.yml
- name: 테스트 및 빌드
run: ./gradlew clean build
Expand Down

0 comments on commit 2ed5a50

Please sign in to comment.