Skip to content

Commit

Permalink
docs: git actions yml 파일 변경
Browse files Browse the repository at this point in the history
- gradlew 실행 시 오류가 날 경우 어떤 오류인지
  • Loading branch information
hyeonjaez committed Sep 17, 2024
1 parent 81f2e3b commit d797f10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

- name: 테스트 및 빌드하기 (main 브랜치)
if: github.ref == 'refs/heads/main'
run: ./gradlew clean build -PspringProfile=prod --warning-mode all
run: ./gradlew clean build -PspringProfile=prod --warning-mode all --scan

- name: 테스트 및 빌드하기 (develop 브랜치)
if: github.ref == 'refs/heads/develop'
run: ./gradlew clean build -PspringProfile=dev --warning-mode all
run: ./gradlew clean build -PspringProfile=dev --warning-mode all --scan

- name: 빌드된 파일 이름 변경
run: mv ./build/libs/*SNAPSHOT.jar ./project.jar
Expand Down

0 comments on commit d797f10

Please sign in to comment.