diff options
Diffstat (limited to '.github/workflows/ubuntu.yml')
| -rw-r--r-- | .github/workflows/ubuntu.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index ac31248..1d6fc65 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -53,8 +53,8 @@ jobs: run: | curl -s https://codecov.io/bash > codecov curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/SHA256SUM > codecov.sha256 - if ! sha256sum -c --ignore-missing --status codecov.sha256 ; then + if sha256sum -c --ignore-missing --status codecov.sha256 ; then + bash < codecov || true + else echo "Download checksum verification failed" - exit 1 fi - bash < codecov || true |
