diff --git a/docs/build.sh b/docs/build.sh new file mode 100755 index 0000000..b7613d2 --- /dev/null +++ b/docs/build.sh @@ -0,0 +1,12 @@ +#!/bin/bash +rm -rf _build +make html + +pushd _build/html +git init +git config user.name 'Autodoc' +git config user.email '<>' +git add . +git commit -m "Autogenerated documentation" +git push --force --quiet "https://${GH_TOKEN}@github.com/b1naryth1ef/disco" master:gh-pages +popd