From 95a46c9d31ded8d84f6c1c82e5a0c6a2fd222f79 Mon Sep 17 00:00:00 2001 From: Le Tan Date: Thu, 6 Jul 2017 21:10:19 +0800 Subject: [PATCH] create an artifact on appveyor containing only exe for update test --- appveyor.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 232c6986..d0635f14 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -48,6 +48,7 @@ after_build: - copy "%APPVEYOR_BUILD_FOLDER%\LICENSE" "distrib\VNote\LICENSE.txt" - echo %vnote_version% > "distrib\VNote\version.txt" - echo %APPVEYOR_REPO_COMMIT% >> "distrib\VNote\version.txt" + - copy "distrib\VNote\VNote.exe" "distrib\VNote_win_%PLATFORM%.exe" # Copy OpenSSL DLLs - if "%PLATFORM%" EQU "X64" (xcopy "openssl-utils.git\win64\*.dll" "distrib\VNote") - if "%PLATFORM%" EQU "x86" (xcopy "openssl-utils.git\win32\*.dll" "distrib\VNote") @@ -57,6 +58,8 @@ after_build: artifacts: - path: build\distrib\VNote_win_%PLATFORM%_portable_%vnote_version%.zip name: portable + - path: build\distrib\VNote_win_%PLATFORM%.exe + name: exe_only deploy: - provider: BinTray @@ -69,3 +72,4 @@ deploy: version: 1.6 publish: true override: true + artifact: portable