Skip to content

Commit

Permalink
chore: maybe fail now?
Browse files Browse the repository at this point in the history
  • Loading branch information
TimBeyer committed Sep 11, 2023
1 parent e42ec6c commit 48d3f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-create-homebrew-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
id: fetch-arm-sha256
if: inputs.release-condition != 'false'
run: |
echo "sha256=$(curl -sSL --fail ${{ env.ARM_TARBALL_URL }} | shasum -a 256 | cut -d ' ' -f 1)" >> "$GITHUB_OUTPUT"
echo "sha256=$(set -o pipefail && curl -sSL --fail ${{ env.ARM_TARBALL_URL }}/fail | shasum -a 256 | cut -d ' ' -f 1)" >> "$GITHUB_OUTPUT"
- name: Fetch amd sha256
id: fetch-amd-sha256
if: inputs.release-condition != 'false'
run: |
echo "sha256=$(curl -sSL --fail ${{ env.AMD_TARBALL_URL }} | shasum -a 256 | cut -d ' ' -f 1)" >> "$GITHUB_OUTPUT"
echo "sha256=$(set -o pipefail && curl -sSL --fail ${{ env.AMD_TARBALL_URL }} | shasum -a 256 | cut -d ' ' -f 1)" >> "$GITHUB_OUTPUT"
homebrew-create-pr:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 48d3f9e

Please sign in to comment.