From 473f304179aaf14d09b1ca377c2ae421aa4164b0 Mon Sep 17 00:00:00 2001 From: Luca Doglione Date: Mon, 20 May 2024 16:37:02 +0200 Subject: [PATCH] Fixing Preview if condition --- .github/workflows/preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 5a62cb3ea6..d6174ab855 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -13,7 +13,7 @@ concurrency: jobs: run: - if: contains(github.event.pull_request.labels.*.name, 'preview') || ${{ github.ref_name == 'main' }} + if: ${{ contains(github.event.pull_request.labels.*.name, 'preview') || github.ref_name == 'main' }} runs-on: ubuntu-latest concurrency: group: netlify