Skip to content

Commit

Permalink
Fix deploy script
Browse files Browse the repository at this point in the history
I broke this script in #7502, so that the stable symlink isn't generated
anymore. This reverts this change.
  • Loading branch information
flip1995 committed Oct 21, 2021
1 parent 91496c2 commit 96126e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96126e7

Please sign in to comment.