Skip to content

Commit

Permalink
docs: git actions yml 파일 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonjaez committed Sep 17, 2024
1 parent 71f5788 commit 747cdee
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 bootJar -PspringProfile=prod --warning-mode all --scan
run: ./gradlew clean build -PspringProfile=prod --warning-mode all --scan

- name: 테스트 및 빌드하기 (develop 브랜치)
if: github.ref == 'refs/heads/develop'
run: ./gradlew clean bootJar -PspringProfile=dev --warning-mode all --scan
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 747cdee

Please sign in to comment.