We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1fb40 commit a84653eCopy full SHA for a84653e
.github/workflows/npm-publish.yml
@@ -66,12 +66,12 @@ jobs:
66
name: npm-package
67
path: .
68
69
- - name: Zip artifact for release
70
- run: zip release.zip ./* -r
+ - name: Tar Gz artifact for release
+ run: tar -czvf release.tar.gz dist/** README.md package.json NOTICE LICENSE
71
72
- name: Create GitHub Release
73
uses: softprops/[email protected]
74
with:
75
token: ${{ secrets.GH_TOKEN }}
76
body_path: CHANGELOG.md
77
- files: release.zip
+ files: release.tar.gz
0 commit comments