We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46a7af5 commit 3184090Copy full SHA for 3184090
.github/workflows/build.yml
@@ -3,9 +3,14 @@ name: Build Windows
3
on:
4
push:
5
branches: [ main ]
6
+ tags:
7
+ - 'v*'
8
pull_request:
9
10
11
+permissions:
12
+ contents: write
13
+
14
jobs:
15
build:
16
runs-on: windows-latest
@@ -58,3 +63,9 @@ jobs:
58
63
path: |
59
64
OpenIPC-Dashboard-Installer.exe
60
65
dist/
66
67
+ - name: Create Release
68
+ uses: softprops/action-gh-release@v1
69
+ if: startsWith(github.ref, 'refs/tags/')
70
+ with:
71
+ files: OpenIPC-Dashboard-Installer.exe
0 commit comments