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.
20 lines
468 B
20 lines
468 B
#!/bin/bash
|
|
echo "Building Autogenerated API Docs"
|
|
pushd ..
|
|
python -m biblio.cli ../disco/.biblio.yaml
|
|
popd
|
|
|
|
echo "Running Gitbook Build"
|
|
gitbook build
|
|
|
|
if [ ! -z "${GH_TOKEN:-}" ]; then
|
|
echo "Deploying to Github Pages"
|
|
pushd _book/
|
|
git init
|
|
git config user.name "AutoDoc"
|
|
git config user.email "<>"
|
|
git add .
|
|
git commit -m "Generated Documentation"
|
|
git push --force --quiet "https://${GH_TOKEN}@github.com/b1naryth1ef/disco" master:gh-pages
|
|
popd
|
|
fi
|
|
|