Skip to content

Commit

Permalink
fix: release url follows redirects (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwagner authored Feb 5, 2024
1 parent 92e34c1 commit 6326ad4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Trigger Release Workflow
run: |
url_="https://github.com/luckyframework/lucky_cli/archive/refs/tags/${{ github.ref_name }}.zip"
sha_="$(curl -s $url_ | sha256sum | awk '{print $1}')"
sha_="$(curl -sL $url_ | sha256sum | awk '{print $1}')"
version_="$(yq '.version' shard.yml)"
gh workflow run release.yml \
Expand Down

0 comments on commit 6326ad4

Please sign in to comment.