From 27a8efedc03d464f00ff9217dd0d216a8091f087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9E=AC=ED=95=9C?= <99114456+jaehan4707@users.noreply.github.com> Date: Sun, 21 Jul 2024 15:46:50 +0900 Subject: [PATCH] =?UTF-8?q?setting:=20jar=20=ED=8C=8C=EC=9D=BC=20=EC=97=85?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20=EC=BD=94=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/mimo-deploy.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/mimo-deploy.yml b/.github/workflows/mimo-deploy.yml index 522d40d..e9e5621 100644 --- a/.github/workflows/mimo-deploy.yml +++ b/.github/workflows/mimo-deploy.yml @@ -36,6 +36,12 @@ jobs: run: pwd - name: List files in the current directory run: ls -al + + - name: Upload JAR file + uses: actions/upload-artifact@v2 + with: + name: mimo + path: target/mimo-*.jar docker-login: runs-on: ubuntu-latest @@ -50,6 +56,10 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + - name: Download JAR file + uses: actions/download-artifact@v2 + with: + name: mimo - name : print this directory run: pwd - name: List files in the current directory