Skip to content

Commit

Permalink
Update SHA256 calculation in homebrew workflow
Browse files Browse the repository at this point in the history
The code for calculating the SHA256 in the homebrew workflow has been modified. Previously, it pointed directly to the tar.gz file, but it now points to the 'asd.phar' file within the latest release's directory.
  • Loading branch information
koriym committed Jun 14, 2024
1 parent baab2cc commit 37b58e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/homebrew.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Calculate SHA256
id: sha
run: |
echo "::set-output name=sha::$(sha256sum ./${{ steps.latest_release.outputs.tag }}.tar.gz | awk '{ print $1 }')"
echo "::set-output name=sha::$(sha256sum ./${{ steps.latest_release.outputs.tag }}/asd.phar | awk '{ print $1 }')"
- name: Update Ruby file
run: |
Expand Down

0 comments on commit 37b58e9

Please sign in to comment.