We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16abf84 commit 5853c52Copy full SHA for 5853c52
.github/workflows/build-win.yaml
@@ -18,3 +18,13 @@ jobs:
18
with:
19
name: hh-creator
20
path: pyinstaller/dist/windows
21
+ - name: Zip for release
22
+ uses: montudor/action-zip@v1
23
+ if: startsWith(github.ref, 'refs/tags/v')
24
+ with:
25
+ args: zip -qq -r hh-creator-${{ github.ref_name }}-windows.zip pyinstaller/dist/windows
26
+ - name: Release
27
+ uses: softprops/action-gh-release@v2
28
29
30
+ files: hh-creator-${{ github.ref_name }}-windows.zip
0 commit comments