From e2fa66a38cb645d5f297916bd156f3f6d4bd9937 Mon Sep 17 00:00:00 2001 From: koenkk Date: Tue, 5 Mar 2024 21:23:07 +0100 Subject: [PATCH] chore: fix ci --- .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 51cb6991..4fa013eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: # Required for `release: merge dev -> master and promote dev` token: ${{secrets.GH_TOKEN}} - uses: actions/checkout@v4 - if: !((github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push') + if: ((github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/')) && github.event_name == 'push') == false - uses: actions/setup-node@v4 with: node-version: 20