From e437cecb481f3731083a64c180e03c30afc80325 Mon Sep 17 00:00:00 2001 From: alice pellerin Date: Sat, 2 May 2026 00:05:46 -0500 Subject: [PATCH] fix windows packaging --- .github/workflows/release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1c5f08..a0fd90b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,9 +58,7 @@ jobs: run: tar --create --gzip --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.tar.gz" "completions" "manpage" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}" - name: package-zip if: ${{ matrix.info.package-extension == 'zip' }} - run: | - move "target/release/hexapoda${{ matrix.info.executable-extension }}" "." - zip --recurse-paths "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.zip" "hexapoda${{ matrix.info.executable-extension }}" "completions" "manpage" + run: tar --create --auto-compress --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.zip" "completions" "manpage" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}" - name: release uses: softprops/action-gh-release@v2 with: