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 86f2d1e commit 539ccceCopy full SHA for 539ccce
Build.PSake.ps1
@@ -85,7 +85,7 @@ Task Sign -Depends Deploy {
85
if (-not (Get-ChildItem -Path 'Cert:\CurrentUser\My' | Where-Object Thumbprint -eq $thumbprint)) {
86
87
## Decrypt and import code signing cert
88
- .\appveyor-tools\secure-file.exe -decrypt .\VE_Certificate_2023.pfx.enc -secret $env:certificate_secret
+ .\appveyor-tools\secure-file.exe -decrypt .\VE_Certificate_2023.pfx.enc -secret "$env:certificate_secret" -salt "$env:certificate_salt"
89
$certificatePassword = ConvertTo-SecureString -String $env:certificate_secret -AsPlainText -Force
90
Import-PfxCertificate -FilePath .\VE_Certificate_2023.pfx -CertStoreLocation 'Cert:\CurrentUser\My' -Password $certificatePassword
91
}
0 commit comments