From 17f278e493f8a8fed894087bf1c9429ee5ffe71e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=E1=BA=A3i=20Nam?= Date: Thu, 14 Mar 2024 16:34:07 +0700 Subject: [PATCH] fix: correct condition in CI (#112) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 469ac86..e2b3144 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: build: if: - ${{ contains('refs/heads/main', github.ref) || contains('refs/heads/release', github.ref) }} + ${{ contains(github.ref, 'refs/heads/main') || contains(github.ref, 'refs/heads/release') }} runs-on: [ubuntu-22.04] needs: - prepare