From 6de125e217efc6e88065821b790c0c92489e3516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=84=9C=EC=A7=80?= <103797531+choiseoji@users.noreply.github.com> Date: Fri, 13 Sep 2024 21:19:19 +0900 Subject: [PATCH] =?UTF-8?q?:bug:=20fix:=20maven=20=EC=84=A4=EC=A0=95=20gra?= =?UTF-8?q?dle=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CICD.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 4888c5f..7de12d4 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -22,8 +22,8 @@ jobs: - name: Build with Gradle run: | - chmod +x ./mvnw - ./mvnw clean package -Dtestskip + chmod +x ./gradlew + ./gradlew clean build -x test - name: Login to DockerHub uses: docker/login-action@v1