From bf07c11fb453210217adb3d2174144572af19f17 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 24 Jun 2025 10:17:08 +0200 Subject: [PATCH] Fix deployment branch checking --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a9a400b..10beb5e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -156,7 +156,7 @@ jobs: concurrency: group: ${{ github.workflow }}-${{ github.ref }}-deployment cancel-in-progress: false - if: "github.ref == 'refs/heads/main' && ${{ github.event_name != 'workflow_run' }} && !contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')" + if: "github.ref == 'refs/heads/main' && github.event_name != 'workflow_run' && !contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')" container: image: ghcr.io/void-linux/void-glibc-full:latest