Skip to content

Commit

Permalink
feat: yml 파일 작성하는 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JINU-CHANG authored Jul 23, 2024
1 parent 71caa02 commit 4384daf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ jobs:

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Write application.yml
env:
APPLICATION_YML: ${{ secrets.APPLICATION_YML }}
APPLICATION_TEST_YML: ${{ secrets.APPLICATION_TEST_YML }}
run: |
echo "${APPLICATION_YML}" > src/main/resources/application.yml
echo "${APPLICATION_TEST_YML}" > src/test/resources/application-test.yml
- name: Build with Gradle
run: ./gradlew clean build
Expand Down

0 comments on commit 4384daf

Please sign in to comment.