godot-html-js-int-demo/.drone.yml

22 lines
469 B
YAML
Raw Normal View History

2020-12-15 23:18:27 -05:00
---
kind: pipeline
type: docker
name: godot-html-js-int-demo
steps:
- name: build-game
image: barichello/godot-ci:3.2
commands:
- mkdir -v -p web-export
- godot -v --export "HTML5" ./web-export/
- name: upload-site
image: minio/mc
environment:
MC_HOST_linode:
from_secret: linode-obj-host
commands:
- mc cp web-export/* linode/games-birch-tree-net/godot-html-js-integration-demo
depends:
- build-game