From 026ae246b6b695760532caa15a0ba944c6c0e3c2 Mon Sep 17 00:00:00 2001 From: Calyx Hikari Date: Sun, 16 Nov 2025 00:53:43 +0800 Subject: [PATCH] Remove checksum compute as GitHub release includes it --- .github/workflows/build.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94a9462..83e651c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,20 +34,6 @@ jobs: id: date run: echo "date=$(date +'%Y.%m.%d')" >> $GITHUB_OUTPUT - - name: Compute SHA256 checksums - id: checksums - run: | - echo "body<> $GITHUB_OUTPUT - echo "Installer build for ${{ steps.date.outputs.date }}" >> $GITHUB_OUTPUT - echo "" >> $GITHUB_OUTPUT - for f in MSVC_Offline_Setup_*.exe; do - sum=$(sha256sum "$f" | awk '{print $1}') - echo "File: $f" >> $GITHUB_OUTPUT - echo "SHA256: $sum" >> $GITHUB_OUTPUT - echo "" >> $GITHUB_OUTPUT - done - echo "EOF" >> $GITHUB_OUTPUT - - name: Create GitHub Release uses: softprops/action-gh-release@v2 with: @@ -67,8 +53,6 @@ jobs: Windows Vista: 14.32.31332.0 (2015-2022) Windows 7, 8, 8.1: 14.44.35211.0 (2015-2022) Windows 10, 11: Latest Version when this build is released (2015-2026) - - ${{ steps.checksums.outputs.body }} files: MSVC_Offline_Setup_*.exe env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}