Skip to content

Commit

Permalink
replaces sha256 in Formula
Browse files Browse the repository at this point in the history
  • Loading branch information
shahadarsh committed Apr 23, 2024
1 parent 4fee9fa commit 87469d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tembo_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
id: fetch_sha256
run: |
sha_256=$(shasum -a 256 tembo-cli/target/${{ matrix.target }}/release/tembo.tar.gz | cut -d" " -f 1)
if [ ${{ matrix.target }} == "x86_64-apple-darwin" ]
if [[ ${{ matrix.target }} == "x86_64-apple-darwin" ]]
then
echo "sha_x86_64=$sha_256" >> $GITHUB_OUTPUT
elif [ ${{ matrix.target }} == "aarch64-apple-darwin" ]
elif [[ ${{ matrix.target }} == "aarch64-apple-darwin" ]]
echo "sha_aarch64=$sha_256" >> $GITHUB_OUTPUT
fi
if: runner.os == 'macOS'
Expand Down

0 comments on commit 87469d5

Please sign in to comment.