From 6bb9526ab96c446e71b33500843af8267348f720 Mon Sep 17 00:00:00 2001 From: Kori Kuzma Date: Thu, 9 Nov 2023 08:16:48 -0500 Subject: [PATCH] cicd: use single quotes in if condition for branch name (#280) https://docs.github.com/en/actions/learn-github-actions/expressions#literals --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 53fda327..95be3856 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: name: Build distribution runs-on: ubuntu-latest needs: get_branch - if: needs.get_branch.outputs.branch_name == "0.8" + if: needs.get_branch.outputs.branch_name == '0.8' steps: - uses: actions/checkout@v4 - name: Set up Python