summary refs log tree commit diff
path: root/scripts/Sign-Package.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Sign-Package.ps1')
-rw-r--r--scripts/Sign-Package.ps14
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Sign-Package.ps1 b/scripts/Sign-Package.ps1

index 8d1df5547..f38b5227e 100644 --- a/scripts/Sign-Package.ps1 +++ b/scripts/Sign-Package.ps1
@@ -10,14 +10,14 @@ if([string]::IsNullOrEmpty($env:SignClientSecret)){ $appSettings = "$currentDirectory\SignClient.json" -$appPath = "$currentDirectory\..\packages\SignClient\tools\SignClient.dll" +$appPath = "$currentDirectory\..\packages\SignClient\tools\netcoreapp2.0\SignClient.dll" $nupgks = ls $currentDirectory\..\*.nupkg | Select -ExpandProperty FullName foreach ($nupkg in $nupgks){ Write-Host "Submitting $nupkg for signing" - dotnet $appPath 'sign' -c $appSettings -i $nupkg -s $env:SignClientSecret -n 'Portable.BouncyCastle' -d 'Portable.BouncyCastle' -u 'https://github.com/onovotny/bc-sharp' + dotnet $appPath 'sign' -c $appSettings -i $nupkg -r $env:SignClientUser -s $env:SignClientSecret -n 'Portable.BouncyCastle' -d 'Portable.BouncyCastle' -u 'https://github.com/onovotny/bc-sharp' Write-Host "Finished signing $nupkg" }