Skip to content

Commit

Permalink
Update gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MinsFuture authored Jun 11, 2024
1 parent 77761ec commit fe2618d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@ jobs:
contains(github.ref, 'main') ||
contains(github.ref, 'develop')
run: |
mkdir ./src/main/resources # resources 폴더 생성
mkdir -p ./src/main/resources # resources 폴더 생성 (이미 존재해도 에러 없이 진행)
cd ./src/main/resources # resources 폴더로 이동
touch ./application.yml # application.yml 생성
echo "${{ secrets.YML }}" > ./application.yml # github actions에서 설정한 값을 application.yml 파일에 쓰기
echo "${{ secrets.YML }}" > ./application.yml # github actions에서 설정한 값을 application.yml 파일에 쓰기 (덮어쓰기)
shell: bash

# gradle build
Expand Down

0 comments on commit fe2618d

Please sign in to comment.