From 7b20d4c29b16c2a37e2eb9c5c5c2edec32cb7c95 Mon Sep 17 00:00:00 2001 From: Kyle Husmann Date: Wed, 9 Oct 2024 22:44:19 -0700 Subject: [PATCH] fix release-build --- .github/workflows/release-build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml index f076510..82c8a5c 100644 --- a/.github/workflows/release-build.yaml +++ b/.github/workflows/release-build.yaml @@ -33,9 +33,9 @@ jobs: if: runner.os == 'Windows' run: mv $(ls *.zip) interlacer-${{ matrix.os }}.zip - - name: Get the name of the binary package (macOS/Linux) + - name: Get the name of the binary package (macOS) if: runner.os != 'Windows' - run: mv $(ls *.tar.gz) interlacer-${{ matrix.os }}.tar.gz + run: mv $(ls *.tgz) interlacer-${{ matrix.os }}.tgz # Temporary step for testing to upload the artifact - name: Upload build artifact @@ -43,7 +43,7 @@ jobs: with: name: interlacer-${{ matrix.os }} path: | - *.tar.gz + *.tgz *.zip release: @@ -73,6 +73,6 @@ jobs: uses: actions/upload-release-asset@v1 with: upload_url: ${{ github.event.release.upload_url }} - asset_path: ./dist/interlacer-${{ matrix.os }}.tar.gz - asset_name: "interlacer-${{ matrix.os }}.tar.gz" + asset_path: ./dist/interlacer-${{ matrix.os }}.tgz + asset_name: "interlacer-${{ matrix.os }}.tgz" asset_content_type: application/gzip