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 f09be27Copy full SHA for f09be27
ci/release.yml
@@ -323,6 +323,19 @@ stages:
323
workingDirectory: $(Pipeline.Workspace)
324
displayName: 'Download PuTTY binaries'
325
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
- ${{ if ne(parameters.PublishAppinstaller, 'true') }}:
340
- powershell: |
341
"Not uploading these files:"
0 commit comments