We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff0310 commit 43d6785Copy full SHA for 43d6785
ci/release.yml
@@ -309,6 +309,19 @@ stages:
309
Get-AppxPackage PythonSoftwareFoundation.PythonManager | Remove-AppxPackage
310
displayName: 'Remove MSIX'
311
312
+ - powershell: |
313
+ $files = gci -File * -EA SilentlyContinue
314
+ $hashes = $files | `
315
+ Sort-Object Name | `
316
+ Format-Table Name, @{
317
+ Label="MD5";
318
+ Expression={(Get-FileHash $_ -Algorithm MD5).Hash}
319
+ }, Length -AutoSize | `
320
+ Out-String -Width 4096
321
+ $hashes
322
+ workingDirectory: $(DIST_DIR)
323
+ displayName: 'Generate hashes (MD5)'
324
+
325
- ${{ if eq(parameters.Publish, 'true') }}:
326
- ${{ if eq(parameters.Sign, 'true') }}:
327
- task: DownloadSecureFile@1
0 commit comments