From 15700b1511657fc0655201c3f96c8cfff6e1ed1e Mon Sep 17 00:00:00 2001 From: angie Date: Sun, 14 Jan 2024 13:10:10 -0300 Subject: [PATCH] Change release artifacts to use `.tar.gz` in all platforms --- .github/workflows/release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e07e56a..61eede8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,11 +10,8 @@ jobs: matrix: include: - target: x86_64-pc-windows-gnu - archive: zip - target: x86_64-unknown-linux-musl - archive: tar.gz - target: x86_64-apple-darwin - archive: zip steps: - uses: actions/checkout@master - name: Compile and release @@ -23,7 +20,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: RUSTTARGET: ${{ matrix.target }} - ARCHIVE_TYPES: ${{ matrix.archive }} + ARCHIVE_TYPES: tar.gz publish: runs-on: ubuntu-latest steps: @@ -34,4 +31,4 @@ jobs: override: true - uses: katyo/publish-crates@v2 with: - registry-token: ${{ secrets.CRATE_AUTH_TOKEN }} \ No newline at end of file + registry-token: ${{ secrets.CRATE_AUTH_TOKEN }}