From 852f4d47fc29a29d449379fafed52abfad215a7e Mon Sep 17 00:00:00 2001 From: shanmite Date: Thu, 25 Apr 2024 09:16:33 +0800 Subject: [PATCH] ci: fix "an artifact with this name already exists on the workflow run" --- .github/workflows/pkg.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pkg.yml b/.github/workflows/pkg.yml index 611d433c4..407301d47 100644 --- a/.github/workflows/pkg.yml +++ b/.github/workflows/pkg.yml @@ -65,11 +65,11 @@ jobs: uses: actions/checkout@v4 - name: "Pkg this" run: | - npm run pkg "${{ matrix.platform }}-arm64" + npm run pkg "node18-${{ matrix.platform }}-arm64" - name: "Upload to artifact" uses: actions/upload-artifact@v4 with: - name: arm64 + name: node18-${{ matrix.platform }}-arm64 path: "dist/*.zip" - name: "Upload to release draft" uses: xresloader/upload-to-github-release@v1