File tree Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Expand file tree Collapse file tree 1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Windows Installer
2+
3+ on :
4+ workflow_dispatch :
5+
6+ jobs :
7+ package :
8+ runs-on : windows-latest
9+ steps :
10+ uses : actions/checkout@v3
11+
12+ - name : Install Go
13+ uses : actions/setup-go@v2
14+ with :
15+ go-version : 1.23
16+
17+ - name : Setup Node
18+ uses : actions/setup-node@v2
19+ with :
20+ node-version : 14
21+
22+ - name : Install NSIS (Scoop)
23+ shell : powershell
24+ run : |
25+ iwr -useb get.scoop.sh -outfile 'install.ps1'
26+ .\install.ps1 -RunAsAdmin
27+ scoop update
28+ scoop bucket add extras
29+ scoop install nsis
30+
31+ - name : Get Wails
32+ run : go install github.com/wailsapp/wails/v2/cmd/wails@latest
33+
34+ - name : Build Wails App
35+ run : wails build -nsis
36+
37+ - name : Upload Installer Artifact
38+ uses : actions/upload-artifact@v2
39+ with :
40+ name : wails-binairies
41+ path : build/bin/*
You can’t perform that action at this time.
0 commit comments