We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f09f28 commit a51154aCopy full SHA for a51154a
.github/workflows/web.yml
@@ -37,7 +37,11 @@ jobs:
37
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
38
39
- name: Build
40
- run: wasm-pack build --target web --release --locked
+ run: |
41
+ cd crates/fluidsim
42
+ wasm-pack build --target web --release --locked
43
+ mv pkg ../..
44
+ cd ../..
45
46
- name: Move files around
47
run: |
@@ -51,4 +55,4 @@ jobs:
51
55
uses: peaceiris/actions-gh-pages@v4
52
56
with:
53
57
github_token: ${{ secrets.GITHUB_TOKEN }}
54
- publish_dir: ./dist
58
+ publish_dir: ./dist
0 commit comments