From 47f2617b4db35516bacfd67434034e496b012d12 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Tue, 11 Nov 2025 12:07:19 +0100 Subject: [PATCH] Use other compression method for ripunzip --- .github/workflows/build-ripunzip.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-ripunzip.yml b/.github/workflows/build-ripunzip.yml index 07e00bff811..a8868adad98 100644 --- a/.github/workflows/build-ripunzip.yml +++ b/.github/workflows/build-ripunzip.yml @@ -93,21 +93,14 @@ jobs: lipo -create -output ripunzip-macos \ -arch x86_64 target/x86_64-apple-darwin/release/ripunzip \ -arch arm64 target/aarch64-apple-darwin/release/ripunzip - - name: Archive (POSIX) - if: runner.os != 'Windows' - shell: bash + - name: Archive run: | - zip -j ripunzip-${{ runner.os }}.zip ripunzip-* - - name: Archive (Windows) - if: runner.os == 'Windows' - shell: powershell - run: | - Compress-Archive -Path ripunzip-* -DestinationPath ripunzip-${{ runner.os }}.zip -Force + tar acf ripunzip-${{ runner.os }}.tar.zst ripunzip-* - name: Upload built binary uses: actions/upload-artifact@v4 with: name: ripunzip-${{ runner.os }} - path: ripunzip-${{ runner.os }}.zip + path: ripunzip-${{ runner.os }}.tar.zst retention-days: 5 compression: 0 - name: Check built binary