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

32 lines
620 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:
2020-12-16 22:31:51 -05:00
- godot -v --export "HTML5" /export/index.html
volumes:
- name: game_export
path: /export
2020-12-15 23:18:27 -05:00
- name: upload-site
image: minio/mc
environment:
MC_HOST_linode:
from_secret: linode-obj-host
commands:
2020-12-16 22:35:01 -05:00
- mc cp --recursive /export/* linode/games-birch-tree-net/godot-html-js-integration-demo
2020-12-16 22:31:51 -05:00
volumes:
- name: game_export
path: /export
2020-12-15 23:18:27 -05:00
depends:
- build-game
2020-12-16 22:31:51 -05:00
volumes:
- name: game_export
temp: {}