Skip to content

Commit

Permalink
fix mkdocs alias names in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
trhallam committed Aug 22, 2024
1 parent f6159b1 commit 33734d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mkdocs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ jobs:
- name: Set latest
if: ${{ github.ref == 'refs/heads/main' }}
run: |
echo "MIKE_ALIAS='${MIKE_ALIAS} latest'" >> $GITHUB_ENV
echo "MIKE_ALIAS=${MIKE_ALIAS} latest" >> $GITHUB_ENV
- name: Set stable
if: ${{ github.ref_type == 'tag' && github.event.type == 'release' }}
run: |
echo "MIKE_ALIAS='${MIKE_ALIAS} stable'" >> $GITHUB_ENV
echo "MIKE_ALIAS=${MIKE_ALIAS} stable" >> $GITHUB_ENV
echo $MKDOCS_VERSION $MIKE_ALIAS
- name: Build docs examples
Expand Down

0 comments on commit 33734d0

Please sign in to comment.