Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit ed2864a

Browse files
committed
Merge branch 'develop' of github.com:blockstack/blockstack-browser into release/0.36.0
2 parents 6ef6356 + 0c46193 commit ed2864a

1 file changed

Lines changed: 24 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff 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" )
2423
artifacts:
2524
- path: BlockstackSetup.msi
2625
cache:
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'

0 commit comments

Comments
 (0)