From 68edb50fdd7b20c2d981ee523c54bc1e7dfb0cc8 Mon Sep 17 00:00:00 2001 From: Dave Corley Date: Sun, 29 Dec 2024 13:45:03 -0700 Subject: [PATCH] FIX: Use 7zip for archiving --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 84e5d2e..160ce1c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -6,7 +6,7 @@ on: workflow_dispatch: push: pull_request: - branches: [ v2.1 ] + branches: [v2.1] jobs: build: @@ -32,7 +32,7 @@ jobs: run: cargo build --release - name: compress - run: tar -acf ${{ matrix.archive }} -C ./target/release/ ${{ matrix.binary }} + run: 7z ${{ matrix.archive }} ./target/release/${{ matrix.binary }} - name: upload uses: softprops/action-gh-release@v1