Skip to content

Commit

Permalink
Fix checksum file path
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Aug 28, 2024
1 parent ae9c97c commit 50cee27
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 @@ -54,7 +54,7 @@ jobs:
gem install '${{ steps.build.outputs.built_file }}'
gem unpack '${{ steps.build.outputs.built_file }}'
tree '${{ steps.build.outputs.package_name }}'
checksum_file="${{ steps.build.outputs.package_name }}._checksums.txt"
checksum_file="${{ steps.build.outputs.package_name }}_checksums.txt"
sha256sum '${{ steps.build.outputs.built_file }}' | tee --append "$checksum_file"
echo "checksum_file=$checksum_file" | tee --append "$GITHUB_OUTPUT"
if [[ ${GITHUB_REF#refs/tags/} =~ ^v[0-9]+\.[0-9]+\.[0-9]+.+ ]]; then
Expand Down

0 comments on commit 50cee27

Please sign in to comment.