-
Notifications
You must be signed in to change notification settings - Fork 56
/
.travis-docgen.sh
36 lines (28 loc) · 1.09 KB
/
.travis-docgen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
# From https://github.com/simonjbeaumont/ocaml-travis-gh-pages
set -e
# Make sure we're not echoing any sensitive data
set +x
set -o errexit -o nounset
eval `opam config env`
./configure --enable-docs
make doc
if [ -z "$TRAVIS" -o "$TRAVIS_PULL_REQUEST" != "false" ]; then
echo "This is not a push Travis-ci build, doing nothing..."
exit 0
else
echo "Updating docs on Github pages..."
fi
DOCDIR=.gh-pages
if [ -n "$KEEP" ]; then trap "rm -rf $DOCDIR" EXIT; fi
rm -rf $DOCDIR
# Error out if $GH_TOKEN is empty or unset
: ${GH_TOKEN:?"GH_TOKEN need to be uploaded via travis-encrypt"}
git clone https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} $DOCDIR 2>&1 | sed -e "s/$GH_TOKEN/!REDACTED!/g"
git -C $DOCDIR checkout gh-pages || git -C $DOCDIR checkout --orphan gh-pages
cp _build/*.docdir/* $DOCDIR
git -C $DOCDIR config user.email "[email protected]"
git -C $DOCDIR config user.name "Travis"
git -C $DOCDIR add .
git -C $DOCDIR commit --allow-empty -m "Travis build $TRAVIS_BUILD_NUMBER pushed docs to gh-pages"
git -C $DOCDIR push origin gh-pages 2>&1 | sed -e "s/$GH_TOKEN/!REDACTED!/g"