From b2acc7cf037830b220c0c931a0d5840db3adbc35 Mon Sep 17 00:00:00 2001 From: bergquist Date: Thu, 13 Oct 2016 17:50:51 +0200 Subject: [PATCH] feat(build): build zipfile before creating artifact --- appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 1b6027b5eb6..e8a7d3edfcf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,7 +25,9 @@ install: build_script: - go run build.go build - grunt release + - 7z a grafana.zip %APPVEYOR_BUILD_FOLDER%\dist\* artifacts: - - path: dist/* + - path: grafana.zip + #- path: dist/* name: binzip