rust/.github/deploy.sh

40 lines
945 B
Bash
Raw Normal View History

2020-02-07 22:24:41 +01:00
#!/bin/bash
2016-07-19 21:25:46 +02:00
set -ex
2016-07-19 21:25:46 +02:00
echo "Removing the current docs for master"
2016-07-19 21:25:46 +02:00
rm -rf out/master/ || exit 0
echo "Making the docs for master"
2016-07-19 21:25:46 +02:00
mkdir out/master/
cp util/gh-pages/index.html out/master
python3 ./util/export.py out/master/lints.json
2016-07-19 21:25:46 +02:00
2020-01-26 15:40:53 +01:00
if [[ -n $TAG_NAME ]]; then
2020-02-14 12:03:48 +01:00
echo "Save the doc for the current tag ($TAG_NAME) and point stable/ to it"
2020-01-26 15:40:53 +01:00
cp -r out/master "out/$TAG_NAME"
2020-02-14 12:03:48 +01:00
rm -f out/stable
ln -s "$TAG_NAME" out/stable
2016-07-19 21:25:46 +02:00
fi
# Generate version index that is shown as root index page
cp util/gh-pages/versions.html out/index.html
2020-02-13 17:29:40 +01:00
echo "Making the versions.json file"
python3 ./util/versions.py out
2016-07-19 21:25:46 +02:00
2020-02-13 17:29:40 +01:00
cd out
# Now let's go have some fun with the cloned repo
2020-01-26 15:40:53 +01:00
git config user.name "GHA CI"
git config user.email "gha@ci.invalid"
if git diff --exit-code --quiet; then
2020-01-26 15:40:53 +01:00
echo "No changes to the output on this push; exiting."
exit 0
fi
2016-07-19 21:25:46 +02:00
git add .
git commit -m "Automatic deploy to GitHub Pages: ${SHA}"
git push "$SSH_REPO" "$TARGET_BRANCH"