File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,15 @@ run-name: Create pre-release for `${{ github.ref_name }}`
10
10
11
11
jobs :
12
12
release-wasm :
13
- runs-on : ubuntu -latest
13
+ runs-on : windows -latest
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
17
+ - name : Setup
18
+ run : npm run setup
19
+
17
20
- name : Build WASM module
18
- run : npm run build:wasm-workflow
21
+ run : npm run build:wasm
19
22
20
23
- name : Pre-Release
21
24
uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"format" : " prettier --write ." ,
8
8
"lint:js" : " eslint \" src/js/**/*.ts\" " ,
9
+ "setup" : " .\\ scripts\\ setup.bat" ,
9
10
"build:wasm" : " .\\ scripts\\ build.bat" ,
10
11
"build:wasm-workflow" : " ./scripts/build.sh" ,
11
12
"build:js" : " cd .\\ src\\ js && npm run build" ,
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+
3
+ cargo install --git https://github.com/navigraph/cargo-msfs
4
+
5
+ cargo-msfs install msfs2020
You can’t perform that action at this time.
0 commit comments