2015-12-30 16:15:36 +01:00
|
|
|
#!/bin/bash
|
2015-12-26 03:35:08 +01:00
|
|
|
|
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-14 20:33:51 +01:00
|
|
|
|
2015-12-30 16:15:36 +01:00
|
|
|
BRANCH="$TRAVIS_BRANCH"
|
2015-12-30 15:56:56 +01:00
|
|
|
if test "x$BRANCH" != xmaster; then exit; fi
|
2015-12-30 15:45:43 +01:00
|
|
|
|
2015-12-30 16:15:36 +01:00
|
|
|
TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null || true)"
|
2015-12-14 20:33:51 +01:00
|
|
|
|
2015-12-30 15:45:43 +01:00
|
|
|
DOCSDIR=build-docs
|
2015-12-30 15:56:56 +01:00
|
|
|
REVISION=$(git rev-parse --short HEAD)
|
2015-12-14 20:33:51 +01:00
|
|
|
|
2015-12-30 15:45:43 +01:00
|
|
|
rm -rf $DOCSDIR || exit
|
|
|
|
mkdir $DOCSDIR
|
|
|
|
cd $DOCSDIR
|
2015-12-14 20:33:51 +01:00
|
|
|
|
2015-12-30 15:45:43 +01:00
|
|
|
cp ../docs/html/* .
|
2017-11-21 07:22:18 +01:00
|
|
|
#cp ../docs/CNAME .
|
2015-12-14 20:33:51 +01:00
|
|
|
|
2015-12-30 15:45:43 +01:00
|
|
|
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
|
2017-11-21 07:22:18 +01:00
|
|
|
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"
|
2015-12-30 16:09:39 +01:00
|
|
|
set -x
|
2015-12-30 15:45:43 +01:00
|
|
|
git fetch upstream
|
2017-11-21 07:22:18 +01:00
|
|
|
git reset upstream/master
|
2015-12-30 15:45:43 +01:00
|
|
|
|
|
|
|
touch .
|
|
|
|
git add -A .
|
2017-11-21 23:14:29 +01:00
|
|
|
git commit -m "Rebuild docs for https://github.com/harfbuzz/harfbuzz/commit/$REVISION"
|
2017-11-21 07:22:18 +01:00
|
|
|
git push -q upstream HEAD:master
|