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:
309
309
Get-AppxPackage PythonSoftwareFoundation.PythonManager | Remove-AppxPackage
310
310
displayName: 'Remove MSIX'
311
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
+
312
325
- ${{ if eq(parameters.Publish, 'true') }} :
313
326
- ${{ if eq(parameters.Sign, 'true') }} :
314
327
- task : DownloadSecureFile@1
@@ -323,19 +336,6 @@ stages:
323
336
workingDirectory: $(Pipeline.Workspace)
324
337
displayName: 'Download PuTTY binaries'
325
338
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
-
339
339
- ${{ if ne(parameters.PublishAppinstaller, 'true') }} :
340
340
- powershell : |
341
341
"Not uploading these files:"
You can’t perform that action at this time.
0 commit comments