From 007300d12ddec5d6ab25686f53aef20004fe6cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 4 Aug 2025 12:44:14 +0200 Subject: [PATCH] Update to SHA256 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13249db426..02ac9aa1e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,15 +58,15 @@ jobs: with: name: "OpenRCT2 Objects" path: artifacts/objects.zip - - name: Calculate SHA1 + - name: Calculate SHA256 run: | - echo "SHA1=$(sha1sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT - id: calculate_sha1 + echo "SHA256=$(sha256sum artifacts/objects.zip | awk '{printf $1}')" >> $GITHUB_OUTPUT + id: calculate_sha256 - name: Create release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/v') with: fail_on_unmatched_files: true files: artifacts/objects.zip - body: "\nSHA1: ${{ steps.calculate_sha1.outputs.SHA1 }}" + body: "\nSHA256: ${{ steps.calculate_sha256.outputs.SHA256 }}" append_body: true