Skip to content

Commit 174a082

Browse files
authored
Add GitHub Actions workflow for Windows installer
create windows builder workflow
1 parent c267c5f commit 174a082

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
30+
name: windows-installer
31+
path: |
32+
out/**
33+
dist/**

0 commit comments

Comments
 (0)