From 71e3fc0c60defc8dc7f1d2bedf2af81ad5517af7 Mon Sep 17 00:00:00 2001 From: ityuany <519495771@qq.com> Date: Thu, 18 Apr 2024 17:11:28 +0800 Subject: [PATCH] fix ci --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8353d91..8513089c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,13 @@ jobs: shell: pwsh run: | mkdir archive - Copy-Item -Path target/${{ matrix.target }}/release/{node.exe,npm.exe,npx.exe,pnpm.exe,pnpx.exe,yarn.exe,snm.exe} -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/node.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/npm.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/npx.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/pnpm.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/pnpx.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/yarn.exe -Destination archive/ + Copy-Item -Path target/${{ matrix.target }}/release/snm.exe -Destination archive/ Compress-Archive -Path archive/* -DestinationPath ${{ matrix.archive-name }} - name: Build archive (Linux and macOS)