Skip to content

Commit 38b1cda

Browse files
committed
ci: add tar package to release
1 parent 782d5ad commit 38b1cda

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,14 @@ jobs:
3838
run: |
3939
cd build
4040
zip -9 -r ../$RELEASE_NAME.zip .
41+
tar -cavf ../$RELEASE_NAME.tar.zst .
4142
4243
- name: Upload to GitHub release
4344
uses: svenstaro/upload-release-action@v2
4445
with:
4546
repo_token: ${{ secrets.GITHUB_TOKEN }}
46-
file: ./${{ steps.info.outputs.RELEASE_NAME }}.zip
47+
file_glob: true
48+
file: ./${{ steps.info.outputs.RELEASE_NAME }}.*
4749
tag: ${{ github.ref }}
4850
overwrite: true
4951

0 commit comments

Comments
 (0)