Skip to content

Commit

Permalink
chore: CI 빌드 스크립트 중 중복되는 task 제거해 성능 개선 (#128)
Browse files Browse the repository at this point in the history
* chore: jar�태스크 비활성화하고 bootJar 태스크로만 JAR 파일 생성

* chore: cicd 범위 조정
  • Loading branch information
ChooSeoyeon authored Jul 31, 2024
1 parent 50c0d7f commit a441527
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/backend-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,7 @@ jobs:
# uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5

- name: Build with Gradle Wrapper
run: |
./gradlew clean
./gradlew copyOasToSwagger
./gradlew build
run: ./gradlew clean build
working-directory: ./backend

- name: Docker build and push
Expand Down
4 changes: 4 additions & 0 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,7 @@ tasks.register('copyOasToSwagger', Copy) {
bootJar {
dependsOn copyOasToSwagger
}

jar {
enabled = false
}

0 comments on commit a441527

Please sign in to comment.