From 044a064069f45864bd8d027588d609826d6fe2df Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Wed, 19 Oct 2022 09:20:01 -0500 Subject: [PATCH] ci: Continue on error instead of using `if: always()` --- .github/workflows/inspect-code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/inspect-code.yml b/.github/workflows/inspect-code.yml index a96e90c3..daa4e274 100644 --- a/.github/workflows/inspect-code.yml +++ b/.github/workflows/inspect-code.yml @@ -68,6 +68,7 @@ jobs: working-directory: src - name: Check Diff + continue-on-error: true run: | ci/diff_to_errors.sh set -o pipefail @@ -75,7 +76,6 @@ jobs: - name: Publish Patch File uses: actions/upload-artifact@v3 - if: failure() with: name: code-cleanup-patch-files path: '*.patch'