From 322e673bcba0b782957b618ab1045c2e41a87dc7 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Mon, 16 Mar 2026 03:12:04 +0000 Subject: [PATCH] Remove use of andstor/file-existence-action (#26078) --- .github/workflows/ci_build_major_branch.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci_build_major_branch.yml b/.github/workflows/ci_build_major_branch.yml index c44e9d8aea..c7bfac919a 100644 --- a/.github/workflows/ci_build_major_branch.yml +++ b/.github/workflows/ci_build_major_branch.yml @@ -123,14 +123,7 @@ jobs: SOURCE_DIR: . DEST_DIR: ${{ inputs.branch || github.ref_name }}/latest - - name: Check if failure marker file exists - id: check_failure_marker - uses: andstor/file-existence-action@v3 - with: - files: ./.failed - - name: Fail build if needed - if: steps.check_failure_marker.outputs.files_exists == 'true' run: | # Exit with failure if the compilation stage failed - exit 1 + [ ! -e .failed ] || exit 1