2020-02-07 15:24:41 -06:00
|
|
|
#!/bin/bash
|
2016-07-19 14:25:46 -05:00
|
|
|
|
2018-05-16 11:55:21 -05:00
|
|
|
set -ex
|
2016-07-19 14:25:46 -05:00
|
|
|
|
2018-04-11 01:07:21 -05:00
|
|
|
echo "Removing the current docs for master"
|
2016-07-19 14:25:46 -05:00
|
|
|
rm -rf out/master/ || exit 0
|
|
|
|
|
2018-04-11 01:07:21 -05:00
|
|
|
echo "Making the docs for master"
|
2016-07-19 14:25:46 -05:00
|
|
|
mkdir out/master/
|
|
|
|
cp util/gh-pages/index.html out/master
|
2016-07-19 14:57:40 -05:00
|
|
|
python ./util/export.py out/master/lints.json
|
2016-07-19 14:25:46 -05:00
|
|
|
|
2020-01-26 08:40:53 -06:00
|
|
|
if [[ -n $TAG_NAME ]]; then
|
|
|
|
echo "Save the doc for the current tag ($TAG_NAME) and point current/ to it"
|
|
|
|
cp -r out/master "out/$TAG_NAME"
|
|
|
|
rm -f out/current
|
|
|
|
ln -s "$TAG_NAME" out/current
|
2016-07-19 14:25:46 -05:00
|
|
|
fi
|
|
|
|
|
2017-08-03 14:17:12 -05:00
|
|
|
# Generate version index that is shown as root index page
|
2019-10-21 03:09:53 -05:00
|
|
|
cp util/gh-pages/versions.html out/index.html
|
|
|
|
|
2020-01-26 08:40:53 -06:00
|
|
|
cd out
|
2019-10-21 03:09:53 -05:00
|
|
|
cat <<-EOF | python - > versions.json
|
|
|
|
import os, json
|
|
|
|
print json.dumps([
|
|
|
|
dir for dir in os.listdir(".") if not dir.startswith(".") and os.path.isdir(dir)
|
|
|
|
])
|
|
|
|
EOF
|
2016-07-19 14:25:46 -05:00
|
|
|
|
2019-10-21 03:09:53 -05:00
|
|
|
# Now let's go have some fun with the cloned repo
|
2020-01-26 08:40:53 -06:00
|
|
|
git config user.name "GHA CI"
|
|
|
|
git config user.email "gha@ci.invalid"
|
2019-10-21 03:09:53 -05:00
|
|
|
|
|
|
|
if git diff --exit-code --quiet; then
|
2020-01-26 08:40:53 -06:00
|
|
|
echo "No changes to the output on this push; exiting."
|
|
|
|
exit 0
|
2019-10-21 03:09:53 -05:00
|
|
|
fi
|
|
|
|
|
2016-07-19 14:25:46 -05:00
|
|
|
git add .
|
|
|
|
git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
|
|
|
|
|
|
|
|
git push "$SSH_REPO" "$TARGET_BRANCH"
|