Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
fix: download binary not having --fail flag (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode authored Jan 27, 2023
1 parent ccb13f0 commit 2d40de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ runs:
- if: ${{ steps.cache-binary.outputs.cache-hit != 'true' }}
name: Download Binary
run: |
curl -L -o /usr/local/bin/${{ inputs.binary-name }} ${{ inputs.binary-github }}/releases/download/${{ inputs.binary-version }}/${{ inputs.binary-name }}
curl -L --fail -o /usr/local/bin/${{ inputs.binary-name }} ${{ inputs.binary-github }}/releases/download/${{ inputs.binary-version }}/${{ inputs.binary-name }}
chmod +x /usr/local/bin/${{ inputs.binary-name }}
shell: bash

0 comments on commit 2d40de8

Please sign in to comment.