Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down