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
|
|
|
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
|
|
|
|
2020-06-04 00:08:27 +02:00
|
|
|
cp ../build/docs/html/* .
|
|
|
|
#cp ../build/docs/CNAME .
|
2015-12-14 20:33:51 +01:00
|
|
|
|
2015-12-30 15:45:43 +01:00
|
|
|
git init
|
2021-06-07 10:27:33 +02:00
|
|
|
git branch -m main
|
2015-12-30 15:45:43 +01:00
|
|
|
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
|
2021-06-05 04:06:58 +02:00
|
|
|
git reset upstream/main
|
2015-12-30 15:45:43 +01:00
|
|
|
|
|
|
|
touch .
|
|
|
|
git add -A .
|
2020-06-04 01:33:14 +02:00
|
|
|
|
2021-06-07 10:52:27 +02:00
|
|
|
if [[ $(git status -s) ]]; then
|
2020-06-04 01:33:14 +02:00
|
|
|
git commit -m "Rebuild docs for https://github.com/harfbuzz/harfbuzz/commit/$REVISION"
|
2021-06-05 04:06:58 +02:00
|
|
|
git push -q upstream HEAD:main
|
2021-06-07 10:52:27 +02:00
|
|
|
fi
|