Skip to content

Commit

Permalink
Fix release workflow (#1959)
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Jan 30, 2024
1 parent fe4995d commit a29b95b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ jobs:
mike deploy --push --remote origin --branch gh-pages --config-file mkdocs.yml ${GITHUB_REF#refs/tags/v}
- name: Deploy stable/latest documentation
if: ${{ needs.publish.outputs.publish_branch }} == ${{ DEFAULT_RELEASE_BRANCH }}
if: ${{ needs.publish.outputs.publish_branch }} == ${{ env.DEFAULT_RELEASE_BRANCH }}
run: |
mike deploy --push --remote origin --branch gh-pages --update-aliases --config-file mkdocs.yml ${GITHUB_REF#refs/tags/v} stable
mike deploy --push --remote origin --branch gh-pages --update-aliases --config-file mkdocs.yml latest ${{ DEFAULT_RELEASE_BRANCH }}
mike deploy --push --remote origin --branch gh-pages --update-aliases --config-file mkdocs.yml latest ${{ env.DEFAULT_RELEASE_BRANCH }}
publish_container_image:
name: Publish container image
Expand Down

0 comments on commit a29b95b

Please sign in to comment.