Skip to content

Commit 4cef4d8

Browse files
committed
Sign files one at a time
1 parent 45be25e commit 4cef4d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

windows-release/sign-files.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ steps:
3737
}
3838
if ($env:FILTER) {
3939
($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
40+
$files | %{ & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) -fl __filelist.txt $_ }
4141
del __filelist.txt
4242
} else {
43-
& $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) $files
43+
$files | %{ & $env:TRUSTED_SIGNING_CMD @(-split $env:TRUSTED_SIGNING_ARGS) $_ }
4444
}
4545
displayName: 'Sign binaries'
4646
retryCountOnTaskFailure: 3

0 commit comments

Comments
 (0)