We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c267c5f commit 174a082Copy full SHA for 174a082
1 file changed
.github/workflows/main.yml
@@ -0,0 +1,33 @@
1
+name: Build Windows Installer
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ build:
10
+ runs-on: windows-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup Node
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
21
+ - name: Install deps
22
+ run: npm install
23
24
+ - name: Build installer
25
+ run: npm run make
26
27
+ - name: Upload artifacts
28
+ uses: actions/upload-artifact@v4
29
30
+ name: windows-installer
31
+ path: |
32
+ out/**
33
+ dist/**
0 commit comments