Skip to content

Commit

Permalink
fix: resource 폴더 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
f1v3-dev committed Jul 20, 2024
1 parent 7b8394c commit ad7b395
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
distribution: 'temurin'

- name: application.properties 파일 생성
run: echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.properties
run: |
mkdir -p ./src/main/resources
echo "${{ secrets.APPLICATION_PROPERTIES }}" > ./src/main/resources/application.properties
# 테스트 및 빌드 진행 (gradle)
- name: Build with Gradle
Expand Down

0 comments on commit ad7b395

Please sign in to comment.