From bef35052b1cfad67b372c8684ff05c58f6a2f1ea Mon Sep 17 00:00:00 2001 From: Tropicananass Date: Fri, 25 Feb 2022 16:44:44 +0100 Subject: [PATCH] drone deployment for testing --- .drone.yml | 16 ++++++++++++++++ index.html => src/index.html | 0 index.js => src/index.js | 0 style.css => src/style.css | 0 4 files changed, 16 insertions(+) create mode 100644 .drone.yml rename index.html => src/index.html (100%) rename index.js => src/index.js (100%) rename style.css => src/style.css (100%) diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..bd23812 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,16 @@ +kind: pipeline +type: exec +name: default + +trigger: + branches: + - master + event: + - push + +steps: +- name: deploy + environment: + TARGET: /srv/drone/deploy/site/private/participativeaftermovie + commands: + - rsync -a --delete src/ $${TARGET}/ \ No newline at end of file diff --git a/index.html b/src/index.html similarity index 100% rename from index.html rename to src/index.html diff --git a/index.js b/src/index.js similarity index 100% rename from index.js rename to src/index.js diff --git a/style.css b/src/style.css similarity index 100% rename from style.css rename to src/style.css