diff --git a/ci/release.yml b/ci/release.yml index a0f7a3b..3b7770d 100644 --- a/ci/release.yml +++ b/ci/release.yml @@ -309,6 +309,19 @@ stages: Get-AppxPackage PythonSoftwareFoundation.PythonManager | Remove-AppxPackage displayName: 'Remove MSIX' + - powershell: | + $files = gci -File * -EA SilentlyContinue + $hashes = $files | ` + Sort-Object Name | ` + Format-Table Name, @{ + Label="MD5"; + Expression={(Get-FileHash $_ -Algorithm MD5).Hash} + }, Length -AutoSize | ` + Out-String -Width 4096 + $hashes + workingDirectory: $(DIST_DIR) + displayName: 'Generate hashes (MD5)' + - ${{ if eq(parameters.Publish, 'true') }}: - ${{ if eq(parameters.Sign, 'true') }}: - task: DownloadSecureFile@1