Commit f8eebf2 1 parent e776dd1 commit f8eebf2 Copy full SHA for f8eebf2
File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,27 @@ jobs:
16
16
runs-on : ${{ matrix.platform }}
17
17
steps :
18
18
- uses : actions/checkout@v3
19
+
20
+ - name : Checkout submodules
21
+ run : git submodule update --init --recursive
22
+
19
23
- name : setup node
20
24
uses : actions/setup-node@v3
21
25
with :
22
26
node-version : 16
27
+
23
28
- name : install Rust stable
24
29
uses : dtolnay/rust-toolchain@stable
30
+
25
31
- name : install dependencies (ubuntu only)
26
32
if : matrix.platform == 'ubuntu-20.04'
27
33
run : |
28
34
sudo apt-get update
29
35
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
36
+
30
37
- name : install frontend dependencies
31
38
run : npm install # change this to npm or pnpm depending on which one you use
39
+
32
40
- uses : tauri-apps/tauri-action@v0
33
41
env :
34
42
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 19
19
- name : Checkout repository
20
20
uses : actions/checkout@v3
21
21
22
+ - name : Checkout submodules
23
+ run : git submodule update --init --recursive
24
+
22
25
- name : Install dependencies (ubuntu only)
23
26
if : matrix.platform == 'ubuntu-20.04'
24
27
run : |
You can’t perform that action at this time.
0 commit comments