Browse Source

Remove use of andstor/file-existence-action (#26078)

Joel Challis 4 months ago
parent
commit
322e673bcb
1 changed files with 1 additions and 8 deletions
  1. 1 8
      .github/workflows/ci_build_major_branch.yml

+ 1 - 8
.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