Skip to content

Commit

Permalink
Merge pull request #16 from CSID-DGU/feat/#11-cicd
Browse files Browse the repository at this point in the history
[FEAT] Update CD.yml
  • Loading branch information
bbabbi authored Oct 6, 2024
2 parents 4c91514 + 4f58b6f commit bbd9d90
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,16 @@ jobs:
- name: make application.yml
run: |
## create application.yml
mkdir ./src/main/resources
mkdir -p ./src/main/resources
cd ./src/main/resources
if [ ! -f ./application.yml ]; then
touch ./application.yml
echo "${{ secrets.CD_APPLICATION }}" >> ./application.yml
else
echo "application.yml 파일이 이미 존재합니다."
fi
touch ./application.yml
echo "${{ secrets.CD_APPLICATION }}" >> ./application.yml
Expand Down

0 comments on commit bbd9d90

Please sign in to comment.