Skip to content

Commit

Permalink
🚀 fix: application.yml로 통일 -> 나중에 일부분은 dev/prod로 분리하기"
Browse files Browse the repository at this point in the history
  • Loading branch information
tmddus2 committed Aug 24, 2024
1 parent 227c29b commit 145d4c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
working-directory: ${{ env.working-directory }}
run: |
cd ./src/main/resources
echo "${{ secrets.DEV_ENV_FILE }}" > ./application-dev.yml
echo "${{ secrets.DEV_ENV_FILE }}" > ./application.yml
- name: Build with Gradle Wrapper
working-directory: ${{ env.working-directory }}
run: |
chmod +x gradlew
./gradlew clean build -Dspring.profiles.active=dev
./gradlew clean build
4 changes: 2 additions & 2 deletions .github/workflows/prod-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
working-directory: ${{ env.working-directory }}
run: |
cd ./src/main/resources
echo "${{ secrets.PROD_ENV_FILE }}" > ./application-prod.yml
echo "${{ secrets.PROD_ENV_FILE }}" > ./application.yml
- name: Build with Gradle Wrapper
working-directory: ${{ env.working-directory }}
run: |
chmod +x gradlew
./gradlew clean build -Dspring.profiles.active=prod
./gradlew clean build

0 comments on commit 145d4c8

Please sign in to comment.