From b6b5b5888966784261108e90ee6a3e1f3b7af501 Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Thu, 29 Jun 2023 17:39:16 +0800 Subject: [PATCH] ci: allow codecov upload failure (#2922) --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f66cdca3bb..538b55c6c9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -179,7 +179,7 @@ jobs: files: ./apps/server/.coverage/lcov.info flags: server-test name: affine - fail_ci_if_error: true + fail_ci_if_error: false storybook-test: name: Storybook Test @@ -258,7 +258,7 @@ jobs: files: ./.coverage/lcov.info flags: e2etest name: affine - fail_ci_if_error: true + fail_ci_if_error: false - name: Upload test results if: ${{ failure() }} @@ -394,7 +394,7 @@ jobs: files: ./.coverage/lcov.info flags: e2etest-${{ matrix.spec.os }}-${{ matrix.spec.arch }} name: affine - fail_ci_if_error: true + fail_ci_if_error: false - name: Upload test results if: ${{ failure() }} @@ -433,7 +433,7 @@ jobs: files: ./.coverage/store/lcov.info flags: unittest name: affine - fail_ci_if_error: true + fail_ci_if_error: false build-docker: if: github.ref == 'refs/heads/master'