Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit d5e2078

Browse files
authored
Update build-linux.yml
1 parent d221e32 commit d5e2078

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build-linux.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,26 @@ jobs:
1212
steps:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v2
15+
with:
16+
submodules: recursive # Ensure submodules are fetched
17+
18+
- name: Use Node.js 16
19+
uses: actions/setup-node@v2
20+
with:
21+
node-version: 16
1522

1623
- name: Install Rust
1724
run: |
1825
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
1926
export PATH="$HOME/.cargo/bin:$PATH"
2027
source $HOME/.cargo/env
2128
22-
- name: Build Tauri App
29+
- name: Install Tauri Bundler
2330
run: |
2431
cargo install tauri-bundler
32+
33+
- name: Build Tauri App
34+
run: |
2535
cargo tauri build
2636
2737
- name: Upload Artifact

0 commit comments

Comments
 (0)