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
2 years ago
cd site
git init
git add -A
2 years ago
git commit -m "deploy"
git push -f git@github.com:krahets/hello-algo.git master:gh-pages
2 years ago
cd -