harfbuzz/.ci/deploy-docs.sh

35 lines
763 B
Bash
Raw Normal View History

2015-12-30 16:15:36 +01:00
#!/bin/bash
2015-12-30 16:09:39 +01:00
set -x
2015-12-30 16:15:36 +01:00
set -o errexit -o nounset
2015-12-30 16:15:36 +01:00
BRANCH="$TRAVIS_BRANCH"
if test "x$BRANCH" != xmaster; then exit; fi
2015-12-30 16:15:36 +01:00
TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null || true)"
DOCSDIR=build-docs
REVISION=$(git rev-parse --short HEAD)
rm -rf $DOCSDIR || exit
mkdir $DOCSDIR
cd $DOCSDIR
cp ../docs/html/* .
cp ../docs/circle.yml .
git init
git config user.name "Travis CI"
git config user.email "travis@harfbuzz.org"
2015-12-30 16:09:39 +01:00
set +x
2015-12-30 16:25:48 +01:00
echo "git remote add upstream \"https://\$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git\""
git remote add upstream "https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git"
2015-12-30 16:09:39 +01:00
set -x
git fetch upstream
git reset upstream/gh-pages
touch .
git add -A .
git commit -m "Rebuild docs for $REVISION"
git push -q upstream HEAD:gh-pages