Skip to content

Commit d6684d1

Browse files
committed
Deploy runtime assets from static and include sim-vpi in release docs
1 parent 9403c7d commit d6684d1

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,26 +34,26 @@ jobs:
3434
run: npm ci
3535

3636
- name: Download Surfer assets
37-
run: scripts/setup-surfer.sh public/surfer
37+
run: scripts/setup-surfer.sh
3838

3939
- name: Download Pyodide assets
40-
run: PYODIDE_DEST_DIR=public/pyodide scripts/setup-pyodide.sh
40+
run: scripts/setup-pyodide.sh
4141

4242
- name: Download CIRCT wasm artifacts
4343
# Artifacts are stored in a GitHub Release named 'circt-wasm'.
4444
# To publish them locally, run:
4545
# gh release create circt-wasm --title "CIRCT WASM artifacts" \
46-
# static/circt/circt-{bmc,sim,verilog}.{js,wasm}
46+
# static/circt/circt-{bmc,sim,sim-vpi,verilog,lec}.{js,wasm}
4747
# The build proceeds without them; simulation features will be
4848
# unavailable but the rest of the tutorial still works.
4949
run: |
50-
mkdir -p public/circt
50+
mkdir -p static/circt
5151
if gh release download circt-wasm \
5252
--repo "$GITHUB_REPOSITORY" \
53-
-D public/circt \
53+
-D static/circt \
5454
--clobber 2>/dev/null; then
5555
echo "CIRCT artifacts downloaded from release 'circt-wasm'"
56-
ls -lh public/circt/
56+
ls -lh static/circt/
5757
else
5858
echo "::notice::No 'circt-wasm' release found; simulation features will be unavailable."
5959
fi

0 commit comments

Comments
 (0)