Migrate to rsync deployment from s3 upload.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dorian 2021-03-15 23:45:01 -04:00
parent b6d95a7dde
commit 800d53ddba
1 changed files with 12 additions and 8 deletions

View File

@ -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: {}