From eaa8a87e563abeb9b62dcb58c2b6c4bd9248a6aa Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Fri, 14 Nov 2025 16:46:01 -0500 Subject: [PATCH] Update cli workflow to avoid artifact name collisions --- .github/workflows/npm-publish-cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish-cli.yml b/.github/workflows/npm-publish-cli.yml index 835fdcbc..025da7a5 100644 --- a/.github/workflows/npm-publish-cli.yml +++ b/.github/workflows/npm-publish-cli.yml @@ -73,7 +73,7 @@ jobs: - name: Upload artifacts uses: actions/upload-artifact@v4 with: - name: cua-binaries + name: cua-binary-${{ matrix.os }} path: dist/ if-no-files-found: error retention-days: 1 @@ -119,8 +119,8 @@ jobs: - name: Download all artifacts uses: actions/download-artifact@v4 with: - name: cua-binaries path: dist + merge-multiple: true - name: Create Release id: create_release