This repository was archived by the owner on Apr 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,9 +20,30 @@ build_script:
2020
2121 copy native\windows\BlockstackSetup\bin\Release\en-us\BlockstackSetup.msi .\
2222
23- IF "%APPVEYOR_REPO_BRANCH%"=="master" ( powershell -Command "& @((Resolve-Path -Path '%ProgramFiles(x86)%\Windows Kits\10\bin\10*\x86\signtool.exe').Path)[0] sign /t http://timestamp.verisign.com/scripts/timstamp.dll /n Blockstack /f signcertfile.pfx BlockstackSetup.msi" )
2423artifacts :
2524- path : BlockstackSetup.msi
2625cache :
27- - node_modules
28- - wix311.exe
26+ - node_modules -> package.json
27+ - wix311.exe
28+
29+
30+ for :
31+
32+ # override settings for `master` and `next` branches to perform signing
33+ -
34+ branches :
35+ only :
36+ - master
37+ - next
38+
39+ after_build :
40+ - ps : Write-Host 'signing MSI file'
41+ - ps : (& @((Resolve-Path -Path "${Env:ProgramFiles(x86)}\Windows Kits\10\bin\10*\x86\signtool.exe").Path)[0] sign /t http://timestamp.verisign.com/scripts/timstamp.dll /n Blockstack /f signcertfile.pfx BlockstackSetup.msi)
42+
43+ -
44+ branches :
45+ except :
46+ - master
47+ - next
48+ after_build :
49+ - ps : Write-Host 'skipping signing MSI file'
You can’t perform that action at this time.
0 commit comments