diff options
author | Nick Brassel <nick@tzarc.org> | 2024-05-07 19:02:16 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-07 10:02:16 +0100 |
commit | 69640365f81c23d189a1d2266b772b536049aa25 (patch) | |
tree | 5ee2f89cc6681451fb497423061e0ad219bc77e0 /.github | |
parent | a58906ceb3aedcc12b2c3e808f8f5a14a944d582 (diff) |
[CI] Fail workflow if there were build failures (#23678)
More whack-a-mole
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci_build_major_branch.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci_build_major_branch.yml b/.github/workflows/ci_build_major_branch.yml index f1c586599a..77755ba71f 100644 --- a/.github/workflows/ci_build_major_branch.yml +++ b/.github/workflows/ci_build_major_branch.yml @@ -117,7 +117,7 @@ jobs: files: firmwares/.failed - name: Fail build if needed - if: steps.check_failure_marker.outputs.exists == 'true' + if: steps.check_failure_marker.outputs.files_exists == 'true' run: | # Exit with failure if the compilation stage failed exit 1 |