26 lines
708 B
Bash
Executable File
26 lines
708 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# see http://benlimmer.com/2013/12/26/automatically-publish-javadoc-to-gh-pages-with-travis-ci/ for details
|
|
|
|
set -e -u
|
|
|
|
if [ "$TRAVIS_REPO_SLUG" == "google/guava" ] && \
|
|
[ "$TRAVIS_JDK_VERSION" == "openjdk8" ] && \
|
|
[ "$TRAVIS_PULL_REQUEST" == "false" ] && \
|
|
[ "$TRAVIS_BRANCH" == "master" ]; then
|
|
echo "Publishing Javadoc and JDiff..."
|
|
|
|
cd $HOME
|
|
git clone -q -b gh-pages https://${GH_TOKEN}@github.com/google/guava gh-pages > /dev/null
|
|
cd gh-pages
|
|
|
|
git config --global user.email "travis@travis-ci.org"
|
|
git config --global user.name "travis-ci"
|
|
|
|
./updaterelease.sh snapshot
|
|
|
|
git push -fq origin gh-pages > /dev/null
|
|
|
|
echo "Javadoc and JDiff published to gh-pages."
|
|
fi
|