Skip to content

Commit

Permalink
Chore: deploy.yml 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
m020202 committed Aug 9, 2024
1 parent cd2db66 commit 4e1102f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Deploy To EC2
on:
push:
branches:
- main
- feat/#6

jobs:
deploy:
Expand All @@ -21,6 +21,12 @@ jobs:
- 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: 테스트 및 빌드
run: ./gradlew clean build

Expand Down

0 comments on commit 4e1102f

Please sign in to comment.