Skip to content

Commit 33734d0

Browse files
committed
fix mkdocs alias names in workflows
1 parent f6159b1 commit 33734d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/mkdocs-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
- name: Set latest
5050
if: ${{ github.ref == 'refs/heads/main' }}
5151
run: |
52-
echo "MIKE_ALIAS='${MIKE_ALIAS} latest'" >> $GITHUB_ENV
52+
echo "MIKE_ALIAS=${MIKE_ALIAS} latest" >> $GITHUB_ENV
5353
5454
- name: Set stable
5555
if: ${{ github.ref_type == 'tag' && github.event.type == 'release' }}
5656
run: |
57-
echo "MIKE_ALIAS='${MIKE_ALIAS} stable'" >> $GITHUB_ENV
57+
echo "MIKE_ALIAS=${MIKE_ALIAS} stable" >> $GITHUB_ENV
5858
echo $MKDOCS_VERSION $MIKE_ALIAS
5959
6060
- name: Build docs examples

0 commit comments

Comments
 (0)