diff options
author | Ashesh <3626859+Ashesh3@users.noreply.github.com> | 2020-05-10 17:19:47 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 17:19:47 +0530 |
commit | 7ae70625f38492072818e674e6db6ec8a21c6085 (patch) | |
tree | cf4a4109824a9465b89a9b96a9c381faad76e2fd /.appveyor.yml | |
parent | 54b20a25b90c8c8d8dfd7f68d66d0ec57c71435f (diff) | |
download | redot-engine-7ae70625f38492072818e674e6db6ec8a21c6085.tar.gz |
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)
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 3f6e932050..e2105be6c0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,3 +39,11 @@ before_build: build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% %OPTIONS% %EXTRA_ARGS% + +after_build: + - 7z a godot_build.zip bin\*.exe + +artifacts: + - path: godot_build.zip + name: Build + type: zip |