forked from colbymchenry/codegraph
-
Notifications
You must be signed in to change notification settings - Fork 3
60 lines (49 loc) · 1.44 KB
/
Copy pathdesktop-windows.yml
File metadata and controls
60 lines (49 loc) · 1.44 KB
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
name: Desktop (Windows)
on:
workflow_dispatch:
push:
branches: [main]
paths:
- 'apps/desktop/**'
- 'apps/web/**'
- 'packages/**'
- 'scripts/desktop-stage.mjs'
- 'scripts/desktop-publish-release.mjs'
- 'src/**'
permissions:
contents: write
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- name: Install Rust
uses: dtolnay/rust-toolchain@1.88.0
- name: Install NSIS
run: choco install nsis -y
- name: Install dependencies
run: npm ci
- name: Stage desktop runtime
run: npm run stage:desktop
- name: Build desktop app
run: npm run build:app -w @codedelta/desktop -- --bundles nsis
- name: Upload Windows installer artifact
uses: actions/upload-artifact@v4
with:
name: codedelta-windows-exe
path: |
apps/desktop/src-tauri/target/release/bundle/nsis/*.exe
if-no-files-found: error
- name: Publish installer to GitHub Release
if: github.ref == 'refs/heads/main'
shell: bash
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
EXE=$(ls apps/desktop/src-tauri/target/release/bundle/nsis/*.exe)
node scripts/desktop-publish-release.mjs windows "$EXE"