Skip to content

Commit

Permalink
Update tarball download URL in Homebrew workflow
Browse files Browse the repository at this point in the history
The commit modifies the URL used for downloading the release tarball in the Homebrew workflow. It now correctly includes the tag of the latest release in the URL. By replacing static text with dynamic variable, it ensures that the correct version of the tarball is always sourced.
  • Loading branch information
koriym committed Jun 14, 2024
1 parent b332b22 commit a91d9dc
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 @@ -46,7 +46,7 @@ jobs:

- name: Download release tarball
run: |
wget https://github.com/alps-asd/app-state-diagram/releases/download{{ steps.latest_release.outputs.tag }}/asd.phar
wget https://github.com/alps-asd/app-state-diagram/releases/download/${{ steps.latest_release.outputs.tag }}/asd.phar
- name: Calculate SHA256
id: sha
Expand Down

0 comments on commit a91d9dc

Please sign in to comment.