diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-05-11 11:24:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-11 11:24:44 +0200 |
commit | 1585690327dc6411842b38546d1a0778282afe3d (patch) | |
tree | 841d0c1e05cd1ee42c2a6bf79324a72e12593daa | |
parent | 57e3d04ea2e2d5da5e66384aca6ebb59b2a07f8e (diff) | |
parent | 7ae70625f38492072818e674e6db6ec8a21c6085 (diff) |
Merge pull request #38625 from Ashesh3/patch-1
Store build as artifact in appveyor
-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 |