2020-02-07 21:24:41 +00:00
|
|
|
#!/bin/bash
|
2016-07-19 19:25:46 +00:00
|
|
|
|
2018-05-16 16:55:21 +00:00
|
|
|
set -ex
|
2016-07-19 19:25:46 +00:00
|
|
|
|
2018-04-11 06:07:21 +00:00
|
|
|
echo "Removing the current docs for master"
|
2016-07-19 19:25:46 +00:00
|
|
|
rm -rf out/master/ || exit 0
|
|
|
|
|
2018-04-11 06:07:21 +00:00
|
|
|
echo "Making the docs for master"
|
2016-07-19 19:25:46 +00:00
|
|
|
mkdir out/master/
|
|
|
|
cp util/gh-pages/index.html out/master
|
2022-04-26 22:22:37 +00:00
|
|
|
cp util/gh-pages/script.js out/master
|
2021-05-31 15:46:20 +00:00
|
|
|
cp util/gh-pages/lints.json out/master
|
2016-07-19 19:25:46 +00:00
|
|
|
|
2020-01-26 14:40:53 +00:00
|
|
|
if [[ -n $TAG_NAME ]]; then
|
2020-02-14 11:03:48 +00:00
|
|
|
echo "Save the doc for the current tag ($TAG_NAME) and point stable/ to it"
|
2021-05-31 15:46:20 +00:00
|
|
|
cp -Tr out/master "out/$TAG_NAME"
|
2021-10-21 16:00:57 +00:00
|
|
|
rm -f out/stable
|
|
|
|
ln -s "$TAG_NAME" out/stable
|
2016-07-19 19:25:46 +00:00
|
|
|
fi
|
|
|
|
|
2020-03-25 19:01:11 +00:00
|
|
|
if [[ $BETA = "true" ]]; then
|
|
|
|
echo "Update documentation for the beta release"
|
2020-07-16 11:44:58 +00:00
|
|
|
cp -r out/master/* out/beta
|
2020-03-25 19:01:11 +00:00
|
|
|
fi
|
|
|
|
|
2017-08-03 19:17:12 +00:00
|
|
|
# Generate version index that is shown as root index page
|
2019-10-21 08:09:53 +00:00
|
|
|
cp util/gh-pages/versions.html out/index.html
|
|
|
|
|
2020-02-13 16:29:40 +00:00
|
|
|
echo "Making the versions.json file"
|
2020-02-13 17:07:56 +00:00
|
|
|
python3 ./util/versions.py out
|
2016-07-19 19:25:46 +00:00
|
|
|
|
2019-10-21 08:09:53 +00:00
|
|
|
# Now let's go have some fun with the cloned repo
|
2021-05-31 15:46:20 +00:00
|
|
|
cd out
|
2020-01-26 14:40:53 +00:00
|
|
|
git config user.name "GHA CI"
|
|
|
|
git config user.email "gha@ci.invalid"
|
2019-10-21 08:09:53 +00:00
|
|
|
|
2020-02-27 16:56:39 +00:00
|
|
|
if [[ -n $TAG_NAME ]]; then
|
2020-07-16 12:42:13 +00:00
|
|
|
# track files, so that the following check works
|
|
|
|
git add --intent-to-add "$TAG_NAME"
|
2020-07-16 11:44:58 +00:00
|
|
|
if git diff --exit-code --quiet -- $TAG_NAME/; then
|
|
|
|
echo "No changes to the output on this push; exiting."
|
|
|
|
exit 0
|
|
|
|
fi
|
2020-02-27 16:56:39 +00:00
|
|
|
# Add the new dir
|
2020-03-25 19:01:11 +00:00
|
|
|
git add "$TAG_NAME"
|
2020-02-27 16:56:39 +00:00
|
|
|
# Update the symlink
|
|
|
|
git add stable
|
|
|
|
# Update versions file
|
|
|
|
git add versions.json
|
|
|
|
git commit -m "Add documentation for ${TAG_NAME} release: ${SHA}"
|
2020-03-25 19:01:11 +00:00
|
|
|
elif [[ $BETA = "true" ]]; then
|
2020-07-16 11:44:58 +00:00
|
|
|
if git diff --exit-code --quiet -- beta/; then
|
|
|
|
echo "No changes to the output on this push; exiting."
|
|
|
|
exit 0
|
|
|
|
fi
|
2020-03-25 19:01:11 +00:00
|
|
|
git add beta
|
|
|
|
git commit -m "Automatic deploy to GitHub Pages (beta): ${SHA}"
|
2020-02-27 16:56:39 +00:00
|
|
|
else
|
2020-07-16 11:44:58 +00:00
|
|
|
if git diff --exit-code --quiet; then
|
|
|
|
echo "No changes to the output on this push; exiting."
|
|
|
|
exit 0
|
|
|
|
fi
|
2020-02-27 16:56:39 +00:00
|
|
|
git add .
|
|
|
|
git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
|
|
|
|
fi
|
2016-07-19 19:25:46 +00:00
|
|
|
|
|
|
|
git push "$SSH_REPO" "$TARGET_BRANCH"
|