File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 25
25
- name : Install node modules
26
26
run : bun i --frozen-lockfile
27
27
28
+ - name : Set up Docker Buildx
29
+ uses : docker/setup-buildx-action@v3
30
+
31
+ - name : Build cargo-msfs image
32
+ uses : docker/build-push-action@v5
33
+ with :
34
+ context : .
35
+ file : Dockerfile
36
+ tags : navigation-data-interface-wasm-build:latest
37
+ load : true
38
+ cache-from : type=gha
39
+ cache-to : type=gha
40
+
41
+ - name : Cache target directories
42
+ uses : actions/cache@v4
43
+ with :
44
+ path : targets
45
+ key : rust-targets
46
+
28
47
- name : Build WASM
29
48
run : bun run build:wasm && bun run package
30
49
Original file line number Diff line number Diff line change 26
26
- name : Install node modules
27
27
run : bun i --frozen-lockfile
28
28
29
+ - name : Set up Docker Buildx
30
+ uses : docker/setup-buildx-action@v3
31
+
32
+ - name : Build cargo-msfs image
33
+ uses : docker/build-push-action@v5
34
+ with :
35
+ context : .
36
+ file : Dockerfile
37
+ tags : navigation-data-interface-wasm-build:latest
38
+ load : true
39
+ cache-from : type=gha
40
+ cache-to : type=gha
41
+
42
+ - name : Cache target directories
43
+ uses : actions/cache@v4
44
+ with :
45
+ path : targets
46
+ key : rust-targets
47
+
29
48
- name : Build WASM
30
49
run : bun run build:wasm && bun run package
31
50
You can’t perform that action at this time.
0 commit comments