From 6a484b4c955305e7d64a73312ae1125bb7b5ec8d Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Wed, 20 Dec 2023 15:54:08 +0000 Subject: [PATCH] GHA: Do not ignore upload failures (#3955) --- .github/workflows/tox.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 78523ee3b5..1b62155127 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -137,17 +137,14 @@ jobs: uses: codecov/codecov-action@v3 with: name: ${{ matrix.passed_name }} - fail_ci_if_error: false # see https://github.com/codecov/codecov-action/issues/598 token: ${{ secrets.CODECOV_TOKEN }} verbose: true # optional (default = false) - name: Archive logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: logs.zip path: .tox/**/log/ - # https://github.com/actions/upload-artifact/issues/123 - continue-on-error: true - name: Report failure if git reports dirty status run: |