Skip to content

Commit 4994cc1

Browse files
committed
feat: add GitHub Actions workflow for Windows build
1 parent 28887f7 commit 4994cc1

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Build Windows
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
build-windows:
11+
runs-on: windows-latest
12+
timeout-minutes: 30
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v6
16+
17+
- name: Setup Node
18+
uses: actions/setup-node@v6
19+
with:
20+
node-version: 24
21+
cache: npm
22+
23+
- name: Setup Rust
24+
uses: dtolnay/rust-toolchain@stable
25+
26+
- name: Rust cache
27+
uses: swatinem/rust-cache@v2
28+
with:
29+
workspaces: src-tauri
30+
31+
- name: Install dependencies
32+
run: npm ci
33+
34+
- name: Build app (Tauri)
35+
run: npm run tauri build

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ The built application will be in `src-tauri/target/release/bundle/`.
8383
2. **Excalidraw Integration**: Each board loads excalidraw.com in an embedded webview
8484
3. **Data Storage**: Drawing data is extracted from the webview's localStorage and saved per-board
8585
4. **Collaboration**: You can associate collaboration room links with boards for quick access
86-
5. **Deep Links**: When you click a supported link, the app opens and prompts you to create a new board or use the current one
8786

8887
## Project Structure
8988

0 commit comments

Comments
 (0)