Skip to content

Commit

Permalink
[FIX] 설정 파일 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
thguss committed Feb 12, 2024
1 parent 7180daa commit f103a0f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Create application.yml
run: |
pwd
touch ./module-api/src/main/resources/application-dev.yml
echo "${{ secrets.APPLICATION_DEV }}" >> src/main/resources/application-dev.yml
cat src/main/resources/application-dev.yml
cd ./operation-api/src/main/resources
touch ./application-dev.yml
echo "${{ secrets.APPLICATION_DEV }}" >> ./application-dev.yml
cat ./application-dev.yml
- name: Build with Gradle
run: ./gradlew build
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/cd-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Create application.yml
run: |
pwd
touch src/main/resources/application-prod.yml
echo "${{ secrets.APPLICATION_PROD }}" >> src/main/resources/application-prod.yml
cat src/main/resources/application-prod.yml
cd ./operation-api/src/main/resources
touch ./application-prod.yml
echo "${{ secrets.APPLICATION_PROD }}" >> ./application-prod.yml
cat ./application-prod.yml
- name: Build with Gradle
run: ./gradlew build
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- name: Create application.yml
run: |
pwd
touch src/main/resources/application-dev.yml
echo "${{ secrets.APPLICATION_DEV }}" >> src/main/resources/application-dev.yml
cat src/main/resources/application-dev.yml
cd ./operation-api/src/main/resources
touch ./application-dev.yml
echo "${{ secrets.APPLICATION_DEV }}" >> ./application-dev.yml
cat ./application-dev.yml
- name: Build with Gradle
run: ./gradlew build
Expand Down

0 comments on commit f103a0f

Please sign in to comment.