From 5a8cb74e44b15628f730ce7596d6887be526b1f8 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 5 Jun 2020 21:54:42 -0400 Subject: [PATCH] Updated signing cert --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index aa55969d0..e59279be0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,9 +8,9 @@ test: off environment: cert_url: - secure: +Hrnyb/2BCwM+8B+26euLJlIcgul2423FxzS82lgeI7oAIu+ie3pV5KVf3zp/E+1 + secure: +Hrnyb/2BCwM+8B+26euLJlIcgul2423FxzS82lgeI68j4GkQUPwQkOB8OxXJz/J cert_pass: - secure: qMlxBF8JbVTwM9vm3fYbCdbuI+0cD2ixtu61YzVoq2c= + secure: zNGTVLKEVu1EO1JzH/hLP9CjmiBtltp6ONytwV2ArUo= build: parallel: true @@ -36,7 +36,7 @@ after_build: - set APPS=%APPVEYOR_BUILD_FOLDER%\RocksmithTookitGUI\ThirdPartyApps - rem Code signing - ps: if ($env:cert_url) { Start-FileDownload $env:cert_url } - - if defined cert_url signtool sign /v /f selfsigned2019.pfx /p "%cert_pass%" /t http://timestamp.verisign.com/scripts/timstamp.dll "%BIN%\Release\RocksmithToolkitGUI.exe" "%BIN%\Release\RocksmithToolkitUpdater.exe" "%BIN%\Release\RocksmithToolkitLib.dll" + - if defined cert_url signtool sign /v /f selfsigned2020.pfx /p "%cert_pass%" /t http://timestamp.verisign.com/scripts/timstamp.dll "%BIN%\Release\RocksmithToolkitGUI.exe" "%BIN%\Release\RocksmithToolkitUpdater.exe" "%BIN%\Release\RocksmithToolkitLib.dll" - rem General package variables - ps: $env:BuildVer = Select-String -Path $env:APPVEYOR_BUILD_FOLDER"\RocksmithToolkitLib\Properties\AssemblyInfo.cs" -Pattern '^\[assembly:\ AssemblyVersion\("(.*?)"\)\]' | % { $_.Matches } | % { $_.Groups[1].Value } - ps: $env:BuildCommit = $env:APPVEYOR_REPO_COMMIT.Substring(0, 8)