#1: add script to update gh-pages

This commit is contained in:
Karl Kroening 2017-05-27 15:59:56 -10:00
parent 696e52a989
commit c55640967c
3 changed files with 20 additions and 0 deletions

1
doc/.gitignore vendored
View File

@ -1 +1,2 @@
doctrees doctrees
gh-pages

View File

@ -18,3 +18,7 @@ help:
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile %: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
gh-pages:
@./update-gh-pages.sh

15
doc/update-gh-pages.sh Executable file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -ex
CLONE_URL=$(git remote -v | grep origin | head -n1 | awk '{print $2}')
if [ ! -d gh-pages ]; then
git clone -b gh-pages ${CLONE_URL} gh-pages
else
(cd gh-pages && git pull origin gh-pages)
fi
cd gh-pages
rm -rf *
cp -r ../html/* .
git add -A
git commit -m 'Update docs'
git push origin gh-pages