File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,14 @@ jobs:
5353 chmod -x dist/webui-2.dylib
5454 chmod -x dist/debug/webui-2.dylib
5555 mv dist/ $artifact
56- tar -czvf $artifact.tar.gz $artifact
56+ zip -r $artifact.zip $artifact
5757 # Add the artifact name as GitHub environment variable for usage in later steps.
5858 echo "ARTIFACT=$artifact" >> $GITHUB_ENV
5959 - name : Upload Artifact
6060 uses : actions/upload-artifact@v3
6161 with :
6262 name : ${{ env.ARTIFACT }}
63- path : ${{ env.ARTIFACT }}
63+ path : ${{ env.ARTIFACT }}.zip
6464 - name : Prepare Release
6565 if : github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name == 'push')
6666 run : |
8484 if : github.ref_type == 'tag' || (github.ref_name == 'main' && github.event_name == 'push')
8585 uses : ncipollo/release-action@v1
8686 with :
87- artifacts : ${{ env.ARTIFACT }}.tar.gz
87+ artifacts : ${{ env.ARTIFACT }}.zip
8888 tag : ${{ env.TAG }}
8989 body : ${{ env.BODY }}
9090 name : ${{ env.TITLE }}
You can’t perform that action at this time.
0 commit comments