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