summaryrefslogtreecommitdiff
path: root/tools/docs-push-gh-pages
blob: 4d07dbdb1d482c785937eb2dae7941fe29f94732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
set -e

./docs-generate
cd ..
git checkout gh-pages
find . -maxdepth 1 -not -name "docs" -not -name ".git" -not -name "tools" -print0 | xargs -0 rm -r || true
mv docs/* .
mv docs/.nojekyll .
rmdir docs
rm -r tools/* || true
git add -A
git commit -m "Updated docs $(date)"
git push origin gh-pages
git checkout master