We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3c1ea commit 683a647Copy full SHA for 683a647
.github/workflows/release.yml
@@ -48,12 +48,12 @@ jobs:
48
49
- name: Compute SHA256 checksums
50
run: |
51
- echo "## Checksums" > bin/CHECKSUMS.md
+ echo "## Checksums" > bin/CHECKSUMS.sha256
52
for f in bin/*; do
53
[ -f "$f" ] || continue
54
- sha256sum "$f" >> bin/CHECKSUMS.md
+ sha256sum "$f" >> bin/CHECKSUMS.sha256
55
done
56
- cat bin/CHECKSUMS.md
+ cat bin/CHECKSUMS.sha256
57
58
- name: Extract latest changelog section
59
id: changelog
0 commit comments