From 40c68ba972efffafd47eaf03f747611cf0048600 Mon Sep 17 00:00:00 2001 From: Radiquum Date: Wed, 25 Jun 2025 16:18:44 +0500 Subject: [PATCH] fix/ci: use the right dist file name --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 71c9452..ff484e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,15 +45,15 @@ jobs: - name: "[Publish] Upload GUI Artifact" uses: actions/upload-artifact@v4 with: - name: "YAMPD-gui" - path: "./dist/gui" + name: "YAMPD-gui-linux" + path: "./dist/yamcpack" if-no-files-found: warn retention-days: 14 - name: "[Publish] Upload CLI Artifact" uses: actions/upload-artifact@v4 with: - name: "YAMPD-cli" - path: "./dist/cli" + name: "YAMPD-cli-linux" + path: "./dist/yamcpack-cli" if-no-files-found: warn retention-days: 14