rust-by-practice/zh-CN/deploy.sh

21 lines
511 B
Bash
Raw Permalink Normal View History

2022-02-11 00:50:21 -06:00
## this script deploys the static website of course.rs to github pages
## build static website for book
mdbook build
## copy CNAME info to book dir
cp ./assets/CNAME ./book/
cp ./assets/*.html ./book/
cp ./assets/sitemap.xml ./book/
## init git repo
cd book
git init
git config user.name "sunface"
git config user.email "cto@188.com"
git add .
git commit -m 'deploy'
git branch -M gh-pages
2022-02-26 23:01:40 -06:00
git remote add origin https://github.com/sunface/zh.practice.rs
2022-02-11 00:50:21 -06:00
## push to github pages
git push -u -f origin gh-pages