Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 764 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 764 Bytes

alchemist-apprentice-wasm

How to Deploy

In main game repo:

cd alchemist_apprentice
cargo build --release --target wasm32-unknown-unknown
wasm-bindgen --out-dir ./out/ --target web .\target\wasm32-unknown-unknown\release\alchemist_apprentice.wasm

This will output a ./out/ directory in that repo's directory. Next copy over ./out directory to this repo, commit, and then push. GitHub pages will auto deploy it from there.

cd ..
rm -rf ./alchemist_apprentice-wasm/out
rm -rf ./alchemist_apprentice-wasm/assets
cp -R ./alchemist_apprentice/out ./alchemist_apprentice-wasm/out
cp -R ./alchemist_apprentice/assets ./alchemist_apprentice-wasm/assets
cd alchemist_apprentice-wasm
git stage .
git commit -m "<release_version>"
git push