Skip to content

Commit

Permalink
Use single quotes in workflow conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
avanwinkle committed Aug 12, 2024
1 parent d1b3be8 commit f944e40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
git config --global user.email [email protected]
- name: Publish 0.80 website and API reference
if: ${{ github.ref_name == "0.80" }}
if: ${{ github.ref_name == '0.80' }}
run: |
mike deploy --push --update-aliases 0.80 dev
- name: Publish latest docs website and API reference
if: ${{ github.ref_name == "main" }}
if: ${{ github.ref_name == 'main' }}
run: |
mike deploy --push --update-aliases 0.57 latest

0 comments on commit f944e40

Please sign in to comment.