f73e710e38
Build site and push to gh-pages / Build site (push) Waiting to run
Build / build (push) Waiting to run
Linter / lint (push) Waiting to run
Security / dependency-review (push) Waiting to run
Security / npm-audit (push) Waiting to run
Security / codeql (push) Waiting to run
Tests / test (push) Waiting to run
23 lines
519 B
Bash
Executable File
23 lines
519 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
export PYTHONPATH=$PWD/python
|
|
cd docs && make html && cd ..
|
|
cd site && jekyll b && cd ..
|
|
rm -rf site/_site/docs
|
|
cp -r docs/_build/html site/_site/docs
|
|
|
|
git fetch
|
|
git checkout -B gh-pages origin/gh-pages
|
|
rm -rf docs .gitignore
|
|
mkdir -p docs
|
|
cp -rf site/_site/* docs
|
|
touch docs/.nojekyll
|
|
echo "webllm.mlc.ai" >> docs/CNAME
|
|
|
|
DATE=`date`
|
|
git add docs && git commit -am "Build at ${DATE}"
|
|
git push origin gh-pages
|
|
git checkout main && git submodule update
|
|
echo "Finish deployment at ${DATE}"
|