@@ -8,7 +8,7 @@ name: Release
88# zip filename all match the tag. build.ps1 validates the shape and fails fast on a malformed tag.
99# Builds the full distribution via build.ps1 on a Windows runner — required because the build
1010# produces win-x64 exes and uses PowerShell-only cmdlets — then attaches the zip
11- # from dist/ to a GitHub release with a SHA256 line so updater.exe can verify the download.
11+ # from dist/ to a GitHub release with an integrity TSV so updater.exe can verify the download.
1212#
1313# Changelog promotion: before the build runs, .github/scripts/Update-Changelog.ps1 renames the
1414# "## Unreleased" heading in CHANGELOG.md to "## [vTAG] - DATE", linking
@@ -141,7 +141,7 @@ jobs:
141141 Write-Host "Release zip: $($zip.Name)"
142142 Write-Host "Release manifest: $($manifest.Name)"
143143 Write-Host "Integrity asset: $integrityName"
144- Write-Host "SHA256: $hash"
144+ Write-Host "Zip digest: $hash"
145145
146146 - name : Generate release body
147147 id : changelog
@@ -155,9 +155,9 @@ jobs:
155155 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
156156 run : |
157157 # Composes the full release body: title + auto-changelog slice +
158- # legacy zip SHA + integrity-asset pointer + four
159- # templated evergreen sections (More / Install / Uninstall / What
160- # you need to do) + optional .github/release-extras/<tag>.md.
158+ # integrity-asset pointer + four templated evergreen sections
159+ # (More / Install / Uninstall / What you need to do) + optional
160+ # .github/release-extras/<tag>.md.
161161 # See .github/scripts/Generate-ReleaseNotes.ps1 for filtering rules,
162162 # token substitution, and scrub gates.
163163 $body = & ./.github/scripts/Generate-ReleaseNotes.ps1 `
0 commit comments