15 lines
No EOL
407 B
YAML
15 lines
No EOL
407 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: https://github.com/abarichello/godot-ci@master
|
|
with:
|
|
GODOT_VERSION: 3.0.2
|
|
- run: |
|
|
mkdir -v -p build/windows
|
|
godot --headless --verbose --export-release "Windows Desktop" build/windows/package.exe
|
|
- uses: actions/upload-artifact@v3
|
|
with:
|
|
name: artifacts
|
|
path: ../build |