Skip to content

Commit

Permalink
chore: github action yml 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
DWL21 committed Feb 14, 2025
1 parent 5806864 commit e8dff31
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Clean Build with Gradle(with Test)
- name: Clean Build with Gradle(with Tests)

run: |
echo ${{ secrets.APPLICATION_DEV_YML }} | base64 --decode > ./src/main/resources/application-dev.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Clean Build with Gradle (without Test)
- name: Clean Build with Gradle (with Tests)
run: |
echo ${{ secrets.APPLICATION_PROD_YML }} | base64 --decode > ./src/main/resources/application-prod.yml
echo ${{ secrets.APPLICATION_YML_PROD_MODE }} | base64 --decode > ./src/main/resources/application.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Clean Build with Gradle (without Test)
- name: Clean Build with Gradle (with Tests)
run: |
echo ${{ secrets.APPLICATION_PROD_YML }} | base64 --decode > ./src/main/resources/application-prod.yml
./gradlew clean build
Expand Down

0 comments on commit e8dff31

Please sign in to comment.