rust-postgres/.travis/update_docs.sh
2015-02-07 20:44:55 -08:00

17 lines
336 B
Bash
Executable File

#!/bin/bash
set -o errexit -o nounset
git clone --branch gh-pages "https://$GH_TOKEN@github.com/${TRAVIS_REPO_SLUG}.git" deploy_docs
cd deploy_docs
git config user.name "Steven Fackler"
git config user.email "sfackler@gmail.com"
rm -rf doc
mv ../target/doc .
git add -A .
git commit -m "rebuild pages at ${TRAVIS_COMMIT}"
git push