From 782834cd92437f14a3237953a204c323b922ab95 Mon Sep 17 00:00:00 2001 From: shinheekim Date: Mon, 23 Dec 2024 10:36:15 +0900 Subject: [PATCH] =?UTF-8?q?[#80]=20chore:=20gradlew=20=EA=B6=8C=ED=95=9C?= =?UTF-8?q?=20=EB=B6=80=EC=97=AC=20=EC=9C=84=EC=B9=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/itcast-build-and-deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/itcast-build-and-deploy.yml b/.github/workflows/itcast-build-and-deploy.yml index 697bb0e..3d71f21 100644 --- a/.github/workflows/itcast-build-and-deploy.yml +++ b/.github/workflows/itcast-build-and-deploy.yml @@ -94,6 +94,9 @@ jobs: done sleep 10 + - name: Grant execute permission for gradlew + run: chmod +x ./gradlew + - name: Build with Gradle (prod profile) run: ./gradlew clean build -Dspring.profiles.active=prod -Duser.language=ko -Duser.country=KR @@ -101,10 +104,6 @@ jobs: if: always() run: docker-compose down - - name: Grant execute permission for gradlew - run: chmod +x ./gradlew - shell: bash - - name: Make Zip file run: zip -r $GITHUB_SHA.zip build/libs/*.jar appspec.yml scripts/deploy.sh shell: bash