Fix deploy script

I broke this script in #7502, so that the stable symlink isn't generated
anymore. This reverts this change.
This commit is contained in:
flip1995 2021-10-21 18:00:57 +02:00
parent 91496c2ac6
commit 96126e7ce9
No known key found for this signature in database
GPG Key ID: 1CA0DF2AF59D68A5

3
.github/deploy.sh vendored
View File

@ -13,7 +13,8 @@ cp util/gh-pages/lints.json out/master
if [[ -n $TAG_NAME ]]; then
echo "Save the doc for the current tag ($TAG_NAME) and point stable/ to it"
cp -Tr out/master "out/$TAG_NAME"
ln -sf "$TAG_NAME" out/stable
rm -f out/stable
ln -s "$TAG_NAME" out/stable
fi
if [[ $BETA = "true" ]]; then