+20
.tangled/workflows/dev-build.yml
+20
.tangled/workflows/dev-build.yml
···
1
+
when:
2
+
- event: ["push", "manual"]
3
+
engine: "nixery"
4
+
5
+
dependencies:
6
+
nixpkgs:
7
+
- nodejs_24
8
+
- rustc
9
+
- cargo
10
+
11
+
steps:
12
+
- name: "Install npm dependencies"
13
+
command: |
14
+
npm install
15
+
- name: "Fetch Rust dependencies"
16
+
command: |
17
+
cd src-tauri; cargo fetch
18
+
- name: "Build"
19
+
command: |
20
+
npm run tauri build