Files
retrowin32/deploy.sh
T
2024-08-09 16:52:52 -07:00

14 lines
318 B
Bash
Executable File

#!/bin/sh
# This script is used to deploy the website.
# It expects the `pages` branch to be checked out in the `deploy` subdir;
# set that up with:
# git worktree add deploy pages
set -e
(cd appdb && ./run.sh)
make -C web profile=lto
(cd web && npm run build)
cp web/*.css web/*.html web/*.wasm web/*.png deploy