zip-rs-wasm/.travis/publish_doc.sh
2015-04-08 14:55:16 +02:00

28 lines
771 B
Bash
Executable file

#!/bin/bash
if [ "$TRAVIS_BRANCH" = "master" ] &&
[ "$TRAVIS_PULL_REQUEST" = "false" ] &&
[ "$TRAVIS_REPO_SLUG" = "mvdnes/zip-rs" ] &&
[ "$TRAVIS_RUST_VERSION" = "1.0.0-beta" ]
then
echo "Publishing documentation..."
cd $HOME
git clone --quiet --branch=gh-pages https://${GH_TOKEN}@github.com/mvdnes/zip-rs gh-pages > /dev/null
cd gh-pages
git config user.email "travis@travis-ci.org"
git config user.name "travis-ci"
git rm -rf . > /dev/null
cp -Rf $TRAVIS_BUILD_DIR/target/doc/* .
git reset HEAD -- index.html > /dev/null
git checkout -- index.html > /dev/null
git add -f .
git commit -m "Auto doc upload from travis"
git push -fq origin gh-pages > /dev/null
echo "Published documentation"
fi