Skip to content

Commit 007300d

Browse files
authored
Update to SHA256
1 parent 5c72c2e commit 007300d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ jobs:
5858
with:
5959
name: "OpenRCT2 Objects"
6060
path: artifacts/objects.zip
61-
- name: Calculate SHA1
61+
- name: Calculate SHA256
6262
run: |
63-
echo "SHA1=$(sha1sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT
64-
id: calculate_sha1
63+
echo "SHA256=$(sha256sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT
64+
id: calculate_sha256
6565
- name: Create release
6666
uses: softprops/action-gh-release@v1
6767
if: startsWith(github.ref, 'refs/tags/v')
6868
with:
6969
fail_on_unmatched_files: true
7070
files: artifacts/objects.zip
71-
body: "\nSHA1: ${{ steps.calculate_sha1.outputs.SHA1 }}"
71+
body: "\nSHA256: ${{ steps.calculate_sha256.outputs.SHA256 }}"
7272
append_body: true

0 commit comments

Comments
 (0)