File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ The built application will be in `src-tauri/target/release/bundle/`.
83832 . ** Excalidraw Integration** : Each board loads excalidraw.com in an embedded webview
84843 . ** Data Storage** : Drawing data is extracted from the webview's localStorage and saved per-board
85854 . ** 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
You can’t perform that action at this time.
0 commit comments