Skip to content

Commit

Permalink
fix: Fixed documentation latest tag exclusion for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
wwoytenko committed May 17, 2024
1 parent 0eb7f8f commit 25af646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
for tag in ${{ env.TAGS }}; do
echo "### CHECKOUT TO ${tag} ###"
git checkout $tag
if [[ "$tag" == *"rc"* || "$tag" == *"dev"* || "$tag" == *"pre"* ]]; then
if [[ "$tag" == *"rc"* || "$tag" == *"dev"* || "$tag" == *"pre"* || "$tag" == *"beta"* || "$tag" == *"b"* ]]; then
mike deploy $tag
else
mike deploy --update-aliases $tag latest
Expand Down

0 comments on commit 25af646

Please sign in to comment.