We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6c6e89 commit 8001e24Copy full SHA for 8001e24
1 file changed
.github/workflows/release.yml
@@ -3,6 +3,8 @@ name: Build Standalone Binaries
3
on:
4
push:
5
branches: [ "main" ]
6
+ tags:
7
+ - 'v*'
8
workflow_dispatch:
9
10
jobs:
@@ -63,3 +65,13 @@ jobs:
63
65
path: |
64
66
dist/*.tar.gz
67
dist/*.zip
68
+
69
+ - name: Publish GitHub Release
70
+ uses: softprops/action-gh-release@v2
71
+ if: startsWith(github.ref, 'refs/tags/')
72
+ with:
73
+ files: |
74
+ dist/*.tar.gz
75
+ dist/*.zip
76
+ env:
77
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments