You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/deploy.sh

9 lines
157 B

rm -rf ./site
mkdocs build --clean
cd site
git init
git add -A
git commit -m 'deploy'
git push -f git@github.com:krahets/hello-algo.git master:gh-pages
cd -