Skip to content

Commit

Permalink
BUGFIX: correct env variable in CI/CD job - build docs (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarbaev-vl authored Nov 5, 2024
1 parent 9674943 commit 08770a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
run: |
if [[ "${{ env.TAG }}" == *"rc"* || "${{ env.TAG }}" == *"dev"* || "${{ env.TAG }}" == *"pre"* || "${{ env.TAG }}" == *"beta"* || "${{ env.TAG }}" == *"b"* ]]; then
mike deploy --push $tag
mike deploy --push ${{ env.TAG }}
else
mike deploy --push --update-aliases $tag latest
mike deploy --push --update-aliases ${{ env.TAG }} latest
mike set-default --push latest
fi

0 comments on commit 08770a5

Please sign in to comment.