From d03f3dcc90f5d2d299dbbc6f81cf4c3423eb913b Mon Sep 17 00:00:00 2001 From: Marc Foley Date: Wed, 26 Feb 2025 09:41:40 +0000 Subject: [PATCH] test.yaml: fix ci --- .github/workflows/test.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 29ae96830..085743193 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -72,9 +72,7 @@ jobs: continue-on-error: true outputs: - finished: - description: "Check whether diffenator2 ran and produced output files" - value: ${{ steps.check_files.outputs.files_exists }} + finished: ${{ steps.check_files.outputs.files_exists }} steps: - name: Cancel previous @@ -123,7 +121,7 @@ jobs: consolidate: needs: [diffbrowsers, diffenator] - if: jobs.diffenator.outputs.finished == 'true' + if: needs.diffenator.outputs.finished == 'true' name: Consolidate results into a single zip runs-on: ubuntu-latest steps: -- 2.47.2