File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -309,6 +309,19 @@ stages:
309309 Get-AppxPackage PythonSoftwareFoundation.PythonManager | Remove-AppxPackage
310310 displayName: 'Remove MSIX'
311311
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+
312325 - ${{ if eq(parameters.Publish, 'true') }} :
313326 - ${{ if eq(parameters.Sign, 'true') }} :
314327 - task : DownloadSecureFile@1
@@ -323,19 +336,6 @@ stages:
323336 workingDirectory: $(Pipeline.Workspace)
324337 displayName: 'Download PuTTY binaries'
325338
326- - powershell : |
327- $files = gci -File * -EA SilentlyContinue
328- $hashes = $files | `
329- Sort-Object Name | `
330- Format-Table Name, @{
331- Label="MD5";
332- Expression={(Get-FileHash $_ -Algorithm MD5).Hash}
333- }, Length -AutoSize | `
334- Out-String -Width 4096
335- $hashes
336- workingDirectory: $(DIST_DIR)
337- displayName: 'Generate hashes (MD5)'
338-
339339 - ${{ if ne(parameters.PublishAppinstaller, 'true') }} :
340340 - powershell : |
341341 "Not uploading these files:"
You can’t perform that action at this time.
0 commit comments