File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ jobs:
3939 if : startsWith(github.ref, 'refs/tags/')
4040 run : just build release
4141
42- # Create a zip file with the two release assets
43- - name : Create Release ZIP
42+ # Create a tar.gz file with the two release assets
43+ - name : Create Release Tar.gz
4444 if : startsWith(github.ref, 'refs/tags/')
45- run : zip -r .build/release/teemoji_${{ github.ref_name }}.zip .build/release/ teemoji .build/release/ teemoji_teemoji.bundle
45+ run : tar -czf teemoji.tar.gz -C .build/release teemoji teemoji_teemoji.bundle
4646
4747 # Create GitHub Release and Upload Assets
4848 - name : Create GitHub Release
4949 if : startsWith(github.ref, 'refs/tags/')
5050 uses : softprops/action-gh-release@v2
5151 with :
52- files : .build/release/teemoji_${{ github.ref_name }}.zip
52+ files : teemoji.tar.gz
5353 env :
5454 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments