From 0af413fe7e5cd8574cca1cd413a56b7d17224536 Mon Sep 17 00:00:00 2001 From: Lucas Colombo Date: Thu, 4 Jan 2024 18:01:22 -0300 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=94=84=20fix=20archive=20creation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c817491..6bd36c0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -48,10 +48,11 @@ jobs: shell: bash run: | cd target/${{ matrix.platform.target }}/release + if [[ "${{ matrix.platform.os }}" == "windows-latest" ]]; then - 7z a ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }} + 7z a ../../../${{ matrix.platform.archive }} ${{ matrix.platform.bin }} else - tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }} + tar czvf ../../../${{ matrix.platform.archive }} ${{ matrix.platform.bin }} fi cd -