We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2203e94 commit 001c7edCopy full SHA for 001c7ed
1 file changed
.github/workflows/deploy.yml
@@ -86,9 +86,9 @@ jobs:
86
# Collect everything into assets/wasm/ so the artifact layout
87
# matches the Jekyll source tree exactly.
88
mkdir -p assets/wasm/blocks
89
- # Demo files (stable names for the REPL)
90
- mv wasm-out/multilingual.wasm assets/wasm/multilingual.wasm
91
- mv wasm-out/multilingual.wat assets/wasm/multilingual.wat
+ # Rename module.* → multilingual.* and move into assets/wasm/
+ mv wasm-out/module.wasm assets/wasm/multilingual.wasm
+ mv wasm-out/module.wat assets/wasm/multilingual.wat
92
mv wasm-out/host_shim.js assets/wasm/host_shim.js
93
mv wasm-out/abi_manifest.json assets/wasm/abi_manifest.json
94
# Per-block binaries compiled in the next step land in assets/wasm/blocks/
0 commit comments