From 64b2e02e4aaa1705fe0a895c50789fa6ed61e532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8F=E3=81=81=E3=83=BC=E3=82=8A=E3=81=83?= <39122497+Quarri6343@users.noreply.github.com> Date: Wed, 30 Aug 2023 15:24:46 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=90=E3=82=B0=E7=A2=BA=E8=AA=8D=E3=82=B9?= =?UTF-8?q?=E3=82=AF=E3=83=AA=E3=83=97=E3=83=88=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e8abcfb..c16481d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -26,9 +26,9 @@ jobs: echo "git_hash=$git_hash" >> $GITHUB_ENV echo "artifactPath=$(pwd)/builds" >> $GITHUB_ENV - name: Check Files in Directory - run: ls /home/runner/work/TradeCore/TradeCore/builds/ + run: ls ${{ env.artifactPath }} - name: Upload Plugin JAR uses: actions/upload-artifact@v2 with: name: TradeCore.jar - path: /home/runner/work/TradeCore/TradeCore/builds/TradeCore-all.jar + path: ${{ env.artifactPath }}/TradeCore-all.jar