rust/.github/deploy.sh

66 lines
1.7 KiB
Bash
Raw Normal View History

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