Skip to content

Commit

Permalink
Ignoring curl errors so they don't pollute the logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeychernyshev committed Aug 17, 2024
1 parent 41e77bd commit 28f2e24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 28f2e24

Please sign in to comment.