From f944e404c24d1a959c939208e910bcd744babcb9 Mon Sep 17 00:00:00 2001 From: Anthony van Winkle Date: Mon, 12 Aug 2024 11:26:02 -0700 Subject: [PATCH] Use single quotes in workflow conditions --- .github/workflows/deploy-version.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-version.yaml b/.github/workflows/deploy-version.yaml index 3ab0c8d27f..4d4176855f 100644 --- a/.github/workflows/deploy-version.yaml +++ b/.github/workflows/deploy-version.yaml @@ -34,11 +34,11 @@ jobs: git config --global user.email docs@dummy.bot.com - 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