Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ityuany committed Apr 18, 2024
1 parent 4ad4e2d commit 71e3fc0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 71e3fc0

Please sign in to comment.