From fc2373b6d55a8e8defcf3e6a5c0d888d6dc830bf Mon Sep 17 00:00:00 2001 From: breadbyte <14045257+breadbyte@users.noreply.github.com> Date: Fri, 19 Apr 2024 15:49:38 +0800 Subject: [PATCH] [skip ci] Update build-and-release.yml undo breaking the action and figure out that contains isn't case sensitive anyways --- .github/workflows/build-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 4bfaa2e9..d1829a8c 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -200,7 +200,7 @@ jobs: runs-on: ubuntu-latest strategy: fail-fast: true - if: ${{ !contains(github.event.head_commit.message, 'skip') || !contains(github.event.head_commit.message, 'SKIP') !contains(github.event.head_commit.message, 'Skip')}} + if: ${{ !contains(github.event.head_commit.message, 'skip')}} steps: - name: dummy action run: "echo 'dummy action that checks if the build is to be skipped, if it is, this action does not run to break the entire build action'"