Skip to content

Commit

Permalink
fix(ci): use tar (yetone#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
yetone authored Sep 3, 2024
1 parent e4b7fd1 commit 0c14792
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,16 +84,16 @@ jobs:
fi
cd results
zip avante_lib-${{ matrix.os }}-${{ matrix.feature }}.zip *.${EXT}
tar cvf avante_lib-${{ matrix.os }}-${{ matrix.feature }}.tar *.${EXT}
- name: Upload Release Asset
uses: shogo82148/actions-upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ASSET_NAME: avante_lib-${{ matrix.os }}-${{ matrix.feature }}.zip
ASSET_NAME: avante_lib-${{ matrix.os }}-${{ matrix.feature }}.tar
with:
upload_url: ${{ needs.create-release.outputs.release_upload_url }}
asset_path: ./results/avante_lib-${{ matrix.os }}-${{ matrix.feature }}.zip
asset_path: ./results/avante_lib-${{ matrix.os }}-${{ matrix.feature }}.tar

publish-release:
permissions:
Expand Down

0 comments on commit 0c14792

Please sign in to comment.