diff options
author | Georg | 2021-08-07 05:54:07 +0200 |
---|---|---|
committer | Georg | 2021-08-07 05:54:07 +0200 |
commit | b2ab4f1ddcad65aed6260682ad978921b8d30ffe (patch) | |
tree | 003b8ee6e22863b4325efba2d15b4c2c5b925318 | |
parent | c730c70d609f3158b6a3226667a53296e2bf606e (diff) | |
download | website-b2ab4f1ddcad65aed6260682ad978921b8d30ffe.tar.gz website-b2ab4f1ddcad65aed6260682ad978921b8d30ffe.tar.bz2 website-b2ab4f1ddcad65aed6260682ad978921b8d30ffe.zip |
Init Pipeline
Signed-off-by: Georg <georg@lysergic.dev>
-rw-r--r-- | .drone.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..a2fc542 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +--- +kind: pipeline +type: exec +name: default1 + +clone: + disable: true + +platform: + os: linux + arch: amd64 + +steps: +- name: deploy + commands: + - sh /opt/drone/scripts/sync-website.sh + +trigger: + branch: + - master + event: + - push |