Skip to content

Commit a51154a

Browse files
committed
fix ci
1 parent 6f09f28 commit a51154a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/web.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ jobs:
3737
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
3838

3939
- name: Build
40-
run: wasm-pack build --target web --release --locked
40+
run: |
41+
cd crates/fluidsim
42+
wasm-pack build --target web --release --locked
43+
mv pkg ../..
44+
cd ../..
4145
4246
- name: Move files around
4347
run: |
@@ -51,4 +55,4 @@ jobs:
5155
uses: peaceiris/actions-gh-pages@v4
5256
with:
5357
github_token: ${{ secrets.GITHUB_TOKEN }}
54-
publish_dir: ./dist
58+
publish_dir: ./dist

0 commit comments

Comments
 (0)