From a10b41e5615dc0a3507c8de36ac53004e3be9c61 Mon Sep 17 00:00:00 2001 From: David Manthey Date: Mon, 30 Oct 2023 08:34:43 -0400 Subject: [PATCH] build: Don't error if codecov reports an error Codecov has been less reliable that we'd like. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ed072eae51..33096d1733 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: - run: npm run ci-build-website - uses: codecov/codecov-action@v3 with: - fail_ci_if_error: true + fail_ci_if_error: false verbose: true - name: On failure, create alternate baseline images in case the new behavior is correct if: ${{ failure() }}