Skip to content

Commit

Permalink
Fix all files sha for brew formula update PR in CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelaferreira committed Jun 8, 2021
1 parent 18dce87 commit 88e68ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
for file in *; do sha256sum "${file}" > "${file}.sha256sum"; done
tar czf all-files-${version}.tar.gz *
sha256sum all-files-${version}.tar.gz > all-files-${version}.tar.gz.sha256sum
all_files_sha="$( cat all-files-${version}.tar.gz.sha256sum )"
all_files_sha="$( cat all-files-${version}.tar.gz.sha256sum | cut -f 1 -d ' ' )"
cd ..
# Create release text
Expand Down

0 comments on commit 88e68ec

Please sign in to comment.