Skip to content

Commit

Permalink
Update cd-dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sunghyun0610 authored Jan 10, 2025
1 parent fde58af commit 33043b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,17 @@ jobs:
run: chmod +x ./meerket/gradlew # gradlew에 실행 권한 부여


# 4) gradle 빌드
- name: Build with Gradle
working-directory: ./meerket
run: |
./gradlew clean build -x test --no-daemon --info
echo "Build completed. Checking JAR file..."
ls -al ./meerket-application/build/libs
echo "Listing Spring Boot Loader classes..."
jar tf ./meerket-application/build/libs/meerket-application-0.0.1.jar | grep "org/springframework/boot/loader"
jar tf ./meerket-application/build/libs/meerket-application-0.0.1.jar | grep "org/springframework/boot/loader" || echo "Spring Boot Loader classes not found."
echo "Checking application entry point..."
jar tf ./meerket-application/build/libs/meerket-application-0.0.1.jar | grep "org/j1p5/MeerketApplication.class"
jar tf ./meerket-application/build/libs/meerket-application-0.0.1.jar | grep "org/j1p5/MeerketApplication.class" || echo "Application entry point not found."
# 여기서부터 배포 job
Expand Down

0 comments on commit 33043b4

Please sign in to comment.