Skip to content

Commit

Permalink
fix: 환경변수 선언 위치 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yooniversal authored Jul 26, 2023
1 parent 6c1fb29 commit fdd37a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,16 +64,16 @@ jobs:
# application.yml
- name: make application.yml
env:
APPLICATION: ${{ secrets.APP_SECRET }}
run: touch ./src/main/resources/application.yml
- name: deliver application.yml
env:
APPLICATION: ${{ secrets.APP_SECRET }}
run: echo $APPLICATION >> ./src/main/resources/application.yml

# application-oauth.yml
- name: make application-oauth.yml
env:
APPLICATION_OAUTH: ${{ secrets.APP_OAUTH_SECRET }}
run: touch ./src/main/resources/application-oauth.yml
- name: deliver application-oauth.yml
env:
APPLICATION_OAUTH: ${{ secrets.APP_OAUTH_SECRET }}
run: echo $APPLICATION_OAUTH >> ./src/main/resources/application-oauth.yml

0 comments on commit fdd37a8

Please sign in to comment.