Fix issue with drone ci build.
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
c2726ce1a1
commit
210193c74a
16
.drone.yml
16
.drone.yml
|
@ -7,8 +7,10 @@ steps:
|
||||||
- name: build-game
|
- name: build-game
|
||||||
image: barichello/godot-ci:3.2
|
image: barichello/godot-ci:3.2
|
||||||
commands:
|
commands:
|
||||||
- mkdir -v -p web-export
|
- godot -v --export "HTML5" /export/index.html
|
||||||
- godot -v --export "HTML5" ./web-export/index.html
|
volumes:
|
||||||
|
- name: game_export
|
||||||
|
path: /export
|
||||||
|
|
||||||
- name: upload-site
|
- name: upload-site
|
||||||
image: minio/mc
|
image: minio/mc
|
||||||
|
@ -16,6 +18,14 @@ steps:
|
||||||
MC_HOST_linode:
|
MC_HOST_linode:
|
||||||
from_secret: linode-obj-host
|
from_secret: linode-obj-host
|
||||||
commands:
|
commands:
|
||||||
- mc cp web-export/* linode/games-birch-tree-net/godot-html-js-integration-demo
|
- mc cp /export/* linode/games-birch-tree-net/godot-html-js-integration-demo
|
||||||
|
volumes:
|
||||||
|
- name: game_export
|
||||||
|
path: /export
|
||||||
depends:
|
depends:
|
||||||
- build-game
|
- build-game
|
||||||
|
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: game_export
|
||||||
|
temp: {}
|
||||||
|
|
|
@ -13,3 +13,4 @@ data_*/
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
web-export/
|
web-export/
|
||||||
|
.vscode/
|
||||||
|
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
Demo of integrating a Godot HTML5 exported game with its host page.
|
Demo of integrating a Godot HTML5 exported game with its host page.
|
||||||
|
|
||||||
## Credits
|
Uses a simple clicker game and a custom web shell to interact with the hosted
|
||||||
|
page.
|
||||||
|
|
||||||
* [Skiing Art by chasergaming on OpenGameArt.org](https://opengameart.org/content/art-challenge-skiing)
|
[Working demo page][demo]
|
||||||
|
|
||||||
|
demo: <https://games.birch-tree.net/godot-html-js-integration-demo/>
|
||||||
|
|
Loading…
Reference in New Issue