Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
clap-0 authored Aug 22, 2024
1 parent 4b4b305 commit acf767c
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,19 @@ jobs:
run: mkdir -p ./src/main/resources/
-
name: 비어있는 yml 파일 생성
run: touch ./src/main/resources/application.yml
run: |
touch ./src/main/resources/application.yml
touch ./src/main/resources/application-deploy.yml
-
name: secrets에 있는 APPLICATION 내용을 yml 파일에 덮어쓰기
run: echo "${{secrets.APPLICATION}}" > ./src/main/resources/application.yml
run: |
echo "${{secrets.APPLICATION}}" > ./src/main/resources/application.yml
echo "${{secrets.APPLICATION_DEPLOY}}" > ./src/main/resources/application-deploy.yml
-
name: yml 파일 업로드
uses: actions/[email protected]
with:
name: application.yml
name: application.yml files
path: ./src/main/resources/
-
name: gradlew 실행권한 부여
Expand Down

0 comments on commit acf767c

Please sign in to comment.