Skip to content

Commit

Permalink
[#80] fix: jar 파일 경로 못찾는 오류
Browse files Browse the repository at this point in the history
  • Loading branch information
shinheekim committed Dec 27, 2024
1 parent 51c901f commit 772f2d4
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/itcast-build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,21 @@ jobs:
if: always()
run: docker-compose down

- name: Debug Gradle Build
run: |
echo "Checking build output..."
ls -al admin/build/libs/
ls -al b2c/build/libs/
ls -al schedule/build/libs/
- name: Make Zip file
run: zip -r $GITHUB_SHA.zip \
admin/build/libs/*.jar \
schedule/build/libs/*.jar \
b2c/build/libs/*.jar \
appspec.yml scripts/deploy.sh
run: |
zip -r $GITHUB_SHA.zip \
admin/build/libs/admin-0.0.1-SNAPSHOT.jar \
b2c/build/libs/b2c-0.0.1-SNAPSHOT.jar \
schedule/build/libs/schedule-0.0.1-SNAPSHOT.jar \
scripts/deploy.sh \
appspec.yml
shell: bash

- name: AWS credential setting
Expand Down

0 comments on commit 772f2d4

Please sign in to comment.