We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c72c2e commit 9043eb2Copy full SHA for 9043eb2
1 file changed
.github/workflows/ci.yml
@@ -58,15 +58,15 @@ jobs:
58
with:
59
name: "OpenRCT2 Objects"
60
path: artifacts/objects.zip
61
- - name: Calculate SHA1
+ - name: Calculate SHA256
62
run: |
63
- echo "SHA1=$(sha1sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT
64
- id: calculate_sha1
+ echo "SHA256=$(sha256sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT
+ id: calculate_sha256
65
- name: Create release
66
uses: softprops/action-gh-release@v1
67
if: startsWith(github.ref, 'refs/tags/v')
68
69
fail_on_unmatched_files: true
70
files: artifacts/objects.zip
71
- body: "\nSHA1: ${{ steps.calculate_sha1.outputs.SHA1 }}"
+ body: "\nSHA256: ${{ steps.calculate_sha256.outputs.SHA256 }}"
72
append_body: true
0 commit comments