From 772f2d427bf40f6e495bfe0f77be4796cfc8f189 Mon Sep 17 00:00:00 2001 From: shinheekim Date: Fri, 27 Dec 2024 16:57:56 +0900 Subject: [PATCH] =?UTF-8?q?[#80]=20fix:=20jar=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EA=B2=BD=EB=A1=9C=20=EB=AA=BB=EC=B0=BE=EB=8A=94=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/itcast-build-and-deploy.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/itcast-build-and-deploy.yml b/.github/workflows/itcast-build-and-deploy.yml index b5fc1cd..894361c 100644 --- a/.github/workflows/itcast-build-and-deploy.yml +++ b/.github/workflows/itcast-build-and-deploy.yml @@ -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