forked from yorkie-team/codepair
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.49 KB
/
windows-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: electron-windows-nsis-build
on:
push:
branches:
- "**"
jobs:
build:
runs-on: windows-2019
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9.4.0
- name: Check NSIS version
run: |
$nsisPath = "C:\Program Files (x86)\NSIS\makensis.exe"
if (Test-Path $nsisPath) {
Write-Output "NSIS version:"
& $nsisPath /VERSION
} else {
Write-Output "NSIS not found in expected location."
exit 1
}
shell: pwsh
- name: Install Dependencies
run: pnpm install --prefer-offline --no-frozen-lockfile
working-directory: ./native
- name: Build Electron App
run: pnpm run build
working-directory: ./native
- name: Create NSIS Installer
run: pnpx electron-builder --win --publish always
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: ./native
- name: Upload Release Assets
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./native/release/**/*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}