From 8e63818eca298b49730e48eb06ff7f636efbbc1a Mon Sep 17 00:00:00 2001 From: Viktor Delev Date: Wed, 30 Oct 2024 10:16:12 +0100 Subject: [PATCH] fix redis disabled --- .github/workflows/build-node-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-node-python.yml b/.github/workflows/build-node-python.yml index 51fdc16f..b79638d9 100644 --- a/.github/workflows/build-node-python.yml +++ b/.github/workflows/build-node-python.yml @@ -314,7 +314,7 @@ jobs: # If playwright is used, build node and python sequentially as it is avoiding the duplicate install overhead build-node-python-playwright: name: Node, Python, Playwright - if: ${{ inputs.redis_enable == 'false' && inputs.playwright_enable && (inputs.playwright_run_because_flag || inputs.playwright_run_because_branch == 'true') }} + if: ${{ !inputs.redis_enable && inputs.playwright_enable && (inputs.playwright_run_because_flag || inputs.playwright_run_because_branch == 'true') }} concurrency: group: "node-python-playwright-${{ github.workflow }}-${{ github.ref || github.head_ref }}-${{ inputs.branch }}" cancel-in-progress: true