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 45be25e commit 4cef4d8Copy full SHA for 4cef4d8
windows-release/sign-files.yml
@@ -37,10 +37,10 @@ steps:
37
}
38
if ($env:FILTER) {
39
($env:FILTER -split ';') -join "`n" | Out-File __filelist.txt -Encoding utf8
40
- & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) -fl __filelist.txt $files
+ $files | %{ & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) -fl __filelist.txt $_ }
41
del __filelist.txt
42
} else {
43
- & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) $files
+ $files | %{ & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) $_ }
44
45
displayName: 'Sign binaries'
46
retryCountOnTaskFailure: 3
0 commit comments