From 1ba9d54f15fcea87055deef31abe0151b4f49467 Mon Sep 17 00:00:00 2001 From: Stelios Tsampas Date: Thu, 12 Oct 2017 12:18:55 +0300 Subject: [PATCH] * Zip artifacts --- .appveyor.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d118ac6d..c730c10a 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -3,10 +3,18 @@ version: 1.9.95.{branch}.{build} pull_requests: do_not_increment_build_number: true +configuration: + - Debug + - Release + build: project: win32/pcsxr.sln verbosity: minimal + +after_build: + - cd win32\build\%CONFIGURATION% + - 7z a pcsxr-pgxp.zip pcsxr-pgxp.exe + - 7z a pcsxr-pgxp.zip plugins\*.dll artifacts: - - path: win32\build\*\*.exe - - path: win32\build\*\plugins\*.dll \ No newline at end of file + - path: win32\build\%CONFIGURATION%\pcsxr-pgxp.zip \ No newline at end of file