From 59735a170fe6ed36953bad035f870f6ed03c5976 Mon Sep 17 00:00:00 2001 From: korikuzma Date: Thu, 9 Nov 2023 08:21:25 -0500 Subject: [PATCH] cicd: use single quotes in if condition for branch name 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 747d0077..292a854c 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 == "main" + if: needs.get_branch.outputs.branch_name == 'main' steps: - uses: actions/checkout@v4 - name: Set up Python