|
@@ -62,14 +62,11 @@ jobs:
|
|
|
run: |
|
|
|
./bin/godot.windows.opt.tools.64.exe --test
|
|
|
|
|
|
-# Build Product Upload (tested and working)
|
|
|
-# sorry this is disabled until github can give us some more space as we would hit our limit very quickly
|
|
|
-# tested this code and it works fine so just enable it to get them back
|
|
|
-# - name: publishing godot windows-editor
|
|
|
-# uses: actions/upload-artifact@v1
|
|
|
-# with:
|
|
|
-# name: windows-editor (x64)
|
|
|
-# path: bin/godot.windows.opt.tools.64.exe
|
|
|
+ - uses: actions/upload-artifact@v2
|
|
|
+ with:
|
|
|
+ name: ${{ github.job }}
|
|
|
+ path: bin/*
|
|
|
+ retention-days: 14
|
|
|
|
|
|
windows-template:
|
|
|
runs-on: "windows-latest"
|
|
@@ -115,11 +112,8 @@ jobs:
|
|
|
scons -j2 verbose=yes warnings=all werror=yes platform=windows target=release tools=no
|
|
|
ls -l bin/
|
|
|
|
|
|
-# Build Product Upload (tested and working)
|
|
|
-# sorry this is disabled until github can give us some more space as we would hit our limit very quickly
|
|
|
-# tested this code and it works fine so just enable it to get them back
|
|
|
-# - name: publishing godot windows-template
|
|
|
-# uses: actions/upload-artifact@v1
|
|
|
-# with:
|
|
|
-# name: windows-template (x64)
|
|
|
-# path: bin/godot.windows.opt.64.exe
|
|
|
+ - uses: actions/upload-artifact@v2
|
|
|
+ with:
|
|
|
+ name: ${{ github.job }}
|
|
|
+ path: bin/*
|
|
|
+ retention-days: 14
|