Skip to content

Commit

Permalink
fix: application-dev 세팅 로직 위치 수정 #61
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jul 24, 2024
1 parent 5691227 commit 02b4574
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/be-cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,18 @@ jobs:
working-directory: ./backend

steps:
- name: Checkout code
- name: Checkout code and Setting application.yml
uses: actions/checkout@v4
run: |
touch ./src/main/resources/application-dev.yml
echo ${{ secrets.APPLICATION_DEV_YML }} > ./src/main/resources/application-dev.yml
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'

- name: Setting application.yml
run: |
touch ./src/main/resources/application-dev.yml
echo ${{ secrets.APPLICATION_DEV_YML }} > ./src/main/resources/application-dev.yml
- name: Grant execute permission for gradlew
run: chmod +x gradlew

Expand Down

0 comments on commit 02b4574

Please sign in to comment.