From e60e4bc4bbe4594cac9e45a002ec523d27e11a14 Mon Sep 17 00:00:00 2001 From: PgmJun <84304802+PgmJun@users.noreply.github.com> Date: Mon, 9 Sep 2024 16:29:20 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20artifact=20=ED=8C=8C=EC=9D=BC=EB=AA=85?= =?UTF-8?q?=20=EC=84=A4=EC=A0=95=20=EB=A1=9C=EC=A7=81=20=EC=9E=91=EC=84=B1?= =?UTF-8?q?=20#81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/be-cd-dev.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/be-cd-dev.yml b/.github/workflows/be-cd-dev.yml index 630a3d2e9..255215f79 100644 --- a/.github/workflows/be-cd-dev.yml +++ b/.github/workflows/be-cd-dev.yml @@ -27,11 +27,14 @@ jobs: - name: bootJar with Gradle run: ./gradlew bootJar -PcreateRestDocs + - name: Change artifact file name + run: mv build/libs/*.jar build/libs/app.jar + - name: Upload artifact file uses: actions/upload-artifact@v4 with: name: app-artifact - path: build/libs/*.jar + path: build/libs/app.jar deploy: needs: build