Skip to content

Commit

Permalink
fix : 경로 삭제 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjKim1229 committed May 12, 2024
1 parent e0e2386 commit dd6725d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
run: |
mkdir ./src/main/resources # resources 폴더 생성
cd ./src/main/resources # resources 폴더로 이동
touch -f ./application.yml # application.yml 생성
touch ./application.yml # application.yml 생성
echo "${{ secrets.YML }}" > ./application.yml # github actions에서 설정한 값을 application.yml 파일에 쓰기
shell: bash

# 환경별 yml 파일 생성(2) - dev
- name: make application-dev.yml
run: |
cd ./src/main/resources
touch -f ./application-dev.yml
touch ./application-dev.yml
echo "${{ secrets.YML_DEV }}" > ./application-dev.yml
shell: bash
# - name: Set yml file
Expand Down
27 changes: 0 additions & 27 deletions src/main/resources/data.sql

This file was deleted.

0 comments on commit dd6725d

Please sign in to comment.