From df87ae6eb8929611878838d79503196dd139303f Mon Sep 17 00:00:00 2001 From: Ashesh <3626859+Ashesh3@users.noreply.github.com> Date: Sun, 10 May 2020 17:19:47 +0530 Subject: [PATCH] Store build as artifact in appveyor 7z is already available in path in appveyor zip the build .exe files and store them ( appveyor retains for ~6 months) (cherry picked from commit 7ae70625f38492072818e674e6db6ec8a21c6085) --- .appveyor.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index c880e1ecf39..dc7dc5988b2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,3 +30,11 @@ before_build: build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes + +after_build: + - 7z a godot_build.zip bin\*.exe + +artifacts: + - path: godot_build.zip + name: Build + type: zip