diff options
author | Georg Pfuetzenreuter | 2021-08-07 06:20:09 +0200 |
---|---|---|
committer | Georg Pfuetzenreuter | 2021-08-07 06:20:09 +0200 |
commit | 67a5524ff7d1fa659d4098ef1ac5da3a52fdd60c (patch) | |
tree | 003b8ee6e22863b4325efba2d15b4c2c5b925318 | |
parent | c730c70d609f3158b6a3226667a53296e2bf606e (diff) | |
parent | b2ab4f1ddcad65aed6260682ad978921b8d30ffe (diff) | |
download | website-67a5524ff7d1fa659d4098ef1ac5da3a52fdd60c.tar.gz website-67a5524ff7d1fa659d4098ef1ac5da3a52fdd60c.tar.bz2 website-67a5524ff7d1fa659d4098ef1ac5da3a52fdd60c.zip |
Merge pull request 'Adding initial website pipeline' (#12) from drone into master
Reviewed-on: https://git.com.de/LibertaCasa/website/pulls/12
-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 |