Skip to content

Commit

Permalink
Update tagged-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua-Dickens authored Jun 5, 2023
1 parent 086a365 commit f7f5a64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
- name: Generate Checksums
id: generate-checksums
run : |
md5sum **/*tar.bz2 | tee md5sum.txt
sha1sum **/*tar.bz2 | tee sha1sum.txt
sha256sum **/*tar.bz2 | tee sha256sum.txt
md5sum *tar.bz2 | tee md5sum.txt
sha1sum *tar.bz2 | tee sha1sum.txt
sha256sum *tar.bz2 | tee sha256sum.txt
echo "md5=$(cut -f1 -d' ' md5sum.txt)" >> $GITHUB_OUTPUT
echo "sha1=$(cut -f1 -d' ' sha1sum.txt)" >> $GITHUB_OUTPUT
echo "sha256=$(cut -f1 -d' ' sha256sum.txt)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit f7f5a64

Please sign in to comment.