From fa9b75ddba1d3573ce2b3b9ba1f282ff31a895e9 Mon Sep 17 00:00:00 2001 From: Minjae Gwon Date: Mon, 11 Dec 2023 18:01:46 +0900 Subject: [PATCH] fix: deploy fixed files --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9b5ab4f..246a1b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,11 +47,11 @@ jobs: - uses: actions/upload-artifact@v3 with: name: master - path: master/target/scala-2.13/master.jar + path: build/master - uses: actions/upload-artifact@v3 with: name: worker - path: worker/target/scala-2.13/worker.jar + path: build/worker - name: Release development build if: github.ref == 'refs/heads/develop' uses: marvinpinto/action-automatic-releases@latest @@ -61,8 +61,8 @@ jobs: prerelease: true title: "Development Build" files: | - master/target/scala-2.13/master.jar - worker/target/scala-2.13/worker.jar + build/master + build/worker - name: Release production build if: github.ref == 'refs/heads/main' uses: marvinpinto/action-automatic-releases@latest @@ -71,5 +71,5 @@ jobs: automatic_release_tag: "latest" title: "Production Build" files: | - master/target/scala-2.13/master.jar - worker/target/scala-2.13/worker.jar + build/master + build/worker