| set -o errexit -o nounset |
| if test "x$TRAVIS_SECURE_ENV_VARS" != xtrue; then exit; fi |
| if test "x$BRANCH" != xmaster; then exit; fi |
| TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null || true)" |
| REVISION=$(git rev-parse --short HEAD) |
| git config user.name "Travis CI" |
| git config user.email "travis@harfbuzz.org" |
| echo "git remote add upstream \"https://\$GH_TOKEN@github.com/harfbuzz/harfbuzz.github.io.git\"" |
| git remote add upstream "https://$GH_TOKEN@github.com/harfbuzz/harfbuzz.github.io.git" |
| git reset upstream/master |
| git commit -m "Rebuild docs for https://github.com/harfbuzz/harfbuzz/commit/$REVISION" |
| git push -q upstream HEAD:master |