From 1bc26bb10fa9d6d4b7cc00a0b1f67f931ab2c9c5 Mon Sep 17 00:00:00 2001 From: Evan Hemsley Date: Sun, 12 Jul 2020 01:20:37 -0700 Subject: [PATCH] trying some other shit --- .drone.yml | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.drone.yml b/.drone.yml index a2a0ccf..8334dd4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,21 +2,21 @@ kind: pipeline type: docker name: default -pipeline: - clone: - image: alpine/git - commands: - - git submodule update --recursive --init +step: +- name: submodules + image: alpine/git + commands: + - git submodule update --recursive --init - build: - image: cbrgm/drone-hugo:latest - validate: true - url: http://moonside.games/docs/encompass +- name: build + image: cbrgm/drone-hugo:latest + validate: true + url: http://moonside.games/docs/encompass - deploy: - image: drillster/drone-rsync - hosts: [ "moonside.games" ] - target: /var/www/docs/encompass - source: public/* - user: hugo - secrets: [ rsync_key ] +- name: deploy + image: drillster/drone-rsync + hosts: [ "moonside.games" ] + target: /var/www/docs/encompass + source: public/* + user: hugo + secrets: [ rsync_key ]