From dce6494b6f13666a0ea7c773086308a5119fdd34 Mon Sep 17 00:00:00 2001 From: Dawid Sowa Date: Tue, 26 Mar 2024 12:03:20 +0100 Subject: [PATCH] ci(sandbox): fix job trigger --- .github/workflows/sandbox-ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sandbox-ci.yaml b/.github/workflows/sandbox-ci.yaml index 46e360e0e..8d74714d5 100644 --- a/.github/workflows/sandbox-ci.yaml +++ b/.github/workflows/sandbox-ci.yaml @@ -59,7 +59,7 @@ jobs: name: Check trigger if: > ( github.event.action == 'prereleased' && contains( github.event.release.tag_name, 'sandbox') ) || - ( github.event.action == 'released' && github.event.release.prerelease && contains( github.event.release.tag_name, 'sandbox') ) || + ( github.event.action == 'released' && contains( github.event.release.tag_name, 'sandbox') ) || ( github.event_name == 'workflow_dispatch' ) || ( github.ref == 'refs/heads/main' && github.event_name == 'push' ) || ( github.event_name == 'pull_request' )