From 5b532e8e16f607dee76e5c64a82144ab50b1c9a9 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Wed, 25 Jun 2025 16:08:56 +0500 Subject: [PATCH] fix/ci: upload artifact file path --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 936ef08..71c9452 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,16 +46,14 @@ jobs: uses: actions/upload-artifact@v4 with: name: "YAMPD-gui" - path: "./gui" - working-directory: ./dist + path: "./dist/gui" if-no-files-found: warn retention-days: 14 - name: "[Publish] Upload CLI Artifact" uses: actions/upload-artifact@v4 with: name: "YAMPD-cli" - path: "./cli" - working-directory: ./dist + path: "./dist/cli" if-no-files-found: warn retention-days: 14