瀏覽代碼

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)
Ashesh 5 年之前
父節點
當前提交
7ae70625f3
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      .appveyor.yml

+ 8 - 0
.appveyor.yml

@@ -39,3 +39,11 @@ before_build:
 
 
 build_script:
 build_script:
   - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% %OPTIONS% %EXTRA_ARGS%
   - 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