We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58aa544 commit 33654fcCopy full SHA for 33654fc
.github/workflows/docs.yml
@@ -61,8 +61,10 @@ jobs:
61
# (usually the git tag will have v as the first character)
62
# Note the `cut` index is 1-ordered
63
if echo $VERSION | cut -c 2- | grep -q "[A-Za-z]"; then
64
- uv run mike deploy $VERSION latest --update-aliases --push
65
- else
+ echo "Is beta version"
66
# For beta versions publish but don't set as latest
67
uv run mike deploy $VERSION --update-aliases --push
+ else
68
+ echo "Is NOT beta version"
69
+ uv run mike deploy $VERSION latest --update-aliases --push
70
fi
0 commit comments