From a96028bdc82f5951c6dc693e130102579b2340a8 Mon Sep 17 00:00:00 2001 From: Ellaismer Date: Tue, 27 Mar 2018 06:33:51 -0400 Subject: [PATCH] Add appveyor windows deployment script --- appveyor.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 4cd12c1dde..c01c45096a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,7 +30,19 @@ install: build_script: - go run build\ci.go install + - 7z a multi-geth-win64.zip build/bin/geth.exe + - ps: Get-FileHash multi-geth-win64.zip -Algorithm SHA256 + - ps: Get-FileHash multi-geth-win64.zip -Algorithm SHA256 | Out-File multi-geth-win64.zip.sha256 test_script: - set CGO_ENABLED=1 - go run build\ci.go test -coverage + +deploy: + artifact: /multi-geth-win64\.zip.*/ + auth_token: + secure: Or4bHgwveQXAjhl+UM1iRUsy5/zbcrk3lUDFFl0nOUyhyuf5PZuvBaEdR2bRW6nv + draft: true + on: + appveyor_repo_tag: true + provider: GitHub