summaryrefslogtreecommitdiff
path: root/tools/push-ghpages
blob: e7b41faf02917fce6f96eb2d9066e00aeb5affd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

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