From 96b4d73c92c0c31f989b1a723d89576f044d5f99 Mon Sep 17 00:00:00 2001 From: ityuany <519495771@qq.com> Date: Tue, 16 Apr 2024 15:11:44 +0800 Subject: [PATCH] bugfix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c736cec5..b71c8760 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: mkdir archive if [ "${{ matrix.build }}" = "windows" ]; then cp LICENSE README.md target/${{ matrix.target }}/release/{node.exe,npm.exe,pnpm.exe,yarn.exe,snm.exe,snx.exe} archive/ - 7z a "${{ matrix.archive-name }}" LICENSE README.md node.exe npm.exe pnpm.exe yarn.exe snm.exe + 7z a ${{ matrix.archive-name }}.7z archive/* else cp LICENSE README.md target/${{ matrix.target }}/release/{node,npm,pnpm,yarn,snm,snx} archive/ tar -czf ${{ matrix.archive-name }}.tar.gz -C archive LICENSE README.md node npm pnpm yarn snm snx