From 28f2e2465e90c3b4d7ee581c1f5b9829f5ea0489 Mon Sep 17 00:00:00 2001 From: Sergey Chernyshev Date: Fri, 16 Aug 2024 23:04:42 -0400 Subject: [PATCH] Ignoring curl errors so they don't pollute the logs --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 93635a7..bb19871 100644 --- a/action.yml +++ b/action.yml @@ -89,7 +89,7 @@ runs: - name: Checking the library that we build for the history records if: ${{ inputs.deploy-destination != '' }} - run: curl -L -f -o history.json ${{ inputs.deploy-destination }}/history.json + run: curl -L -f -o history.json ${{ inputs.deploy-destination }}/history.json || true shell: "bash" continue-on-error: true