Migrate to rsync deployment from s3 upload.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
b6d95a7dde
commit
800d53ddba
20
.drone.yml
20
.drone.yml
|
@ -13,19 +13,23 @@ steps:
|
|||
path: /export
|
||||
|
||||
- name: upload-site
|
||||
image: minio/mc
|
||||
environment:
|
||||
MC_HOST_linode:
|
||||
from_secret: linode-obj-host
|
||||
commands:
|
||||
- mc cp --recursive /godot-html-js-integration-demo linode/games-birch-tree-net
|
||||
image: drillster/drone-rsync
|
||||
settings:
|
||||
user:
|
||||
from_secret: ssh-username
|
||||
key:
|
||||
from_secret: ssh-key
|
||||
hosts: [ "birch-tree.net" ]
|
||||
source: /godot-html-js-integration-demo
|
||||
target: /srv/supply-depot/games-birch-tree-net/www
|
||||
recursive: true
|
||||
args: "--chown=www-data:www-data"
|
||||
volumes:
|
||||
- name: game_export
|
||||
path: /godot-html-js-integration-demo
|
||||
depends:
|
||||
depends_on:
|
||||
- build-game
|
||||
|
||||
|
||||
volumes:
|
||||
- name: game_export
|
||||
temp: {}
|
||||
|
|
Loading…
Reference in New Issue