From 9be7b18ecc2fbd384001dab4d130e6f70d2f1a8f Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Fri, 21 Feb 2025 10:37:56 +0000 Subject: [PATCH] update workflow to not fail --- .github/workflows/test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ad347b2fd..29ae96830 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -71,6 +71,11 @@ jobs: runs-on: ubuntu-22.04 continue-on-error: true + outputs: + finished: + description: "Check whether diffenator2 ran and produced output files" + value: ${{ steps.check_files.outputs.files_exists }} + steps: - name: Cancel previous uses: styfle/cancel-workflow-action@0.11.0 @@ -118,6 +123,7 @@ jobs: consolidate: needs: [diffbrowsers, diffenator] + if: jobs.diffenator.outputs.finished == 'true' name: Consolidate results into a single zip runs-on: ubuntu-latest steps: -- 2.47.2