Skip to content

Commit 80dd3f0

Browse files
authored
Update Linux workflows .tar.gz to .zip
1 parent c79f499 commit 80dd3f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Prepare Release
9595
if: github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name == 'push')
9696
run: |
97-
tar -czvf ${{ env.ARTIFACT }}.tar.gz ${{ env.ARTIFACT }}
97+
zip -r ${{ env.ARTIFACT }}.zip ${{ env.ARTIFACT }}
9898
if [ $GITHUB_REF_TYPE == tag ]; then
9999
echo "TAG=$GITHUB_REF_NAME" >> $GITHUB_ENV
100100
else
@@ -115,7 +115,7 @@ jobs:
115115
if: github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name == 'push')
116116
uses: ncipollo/release-action@v1
117117
with:
118-
artifacts: ${{ env.ARTIFACT }}.tar.gz
118+
artifacts: ${{ env.ARTIFACT }}.zip
119119
tag: ${{ env.TAG }}
120120
body: ${{ env.BODY }}
121121
name: ${{ env.TITLE }}

0 commit comments

Comments
 (0)