diff options
author | Georg | 2021-08-07 05:21:46 +0200 |
---|---|---|
committer | Georg | 2021-08-07 05:21:46 +0200 |
commit | 684392f4d1a5facafaea2ffbb1cb70a2ff2fc263 (patch) | |
tree | e96e348c295168c540819a6893df53c61ab886b6 | |
parent | aa73b77ee23ef8d32ae428e7cbc4979bc07495b1 (diff) | |
download | gemini-684392f4d1a5facafaea2ffbb1cb70a2ff2fc263.tar.gz gemini-684392f4d1a5facafaea2ffbb1cb70a2ff2fc263.tar.bz2 gemini-684392f4d1a5facafaea2ffbb1cb70a2ff2fc263.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..ceac33d --- /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: + - echo "Init Testing Pipeline" | nc -N 127.0.0.2 2424 + - sh /opt/drone/scripts/sync-gemini.sh + - echo "Completed Testing Pipeline" | nc -N 127.0.0.2 2424 + +trigger: + branch: + - master |