Skip to content

Commit

Permalink
fix: 배포 스크립트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
char-yb committed Apr 6, 2024
1 parent bf337ce commit 8f496e4
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,9 @@ jobs:
# 프로젝트 저장소에 업로드하면 안되는 설정 파일들을 만들어줍니다.
- name: Make application.yml
run: |
# src/main/resources 으로 경로를 이동합니다.
cd ./src/main/resources
# 필요한 yml 파일들을 만들어줍니다.
touch ./application.yml
# 등록해둔 Github Secrets의 내용을 이용해서 yml 파일의 내용을 써줍니다.
echo "$APPLICATION" > ./application.yml
mkdir -p ./src/main/resources
echo "$APPLICATION" > ./src/main/resources/application.yml
env:
APPLICATION: ${{ secrets.APPLICATION }}
shell: bash
Expand Down

0 comments on commit 8f496e4

Please sign in to comment.