diff options
author | Georg | 2021-08-06 23:10:22 +0200 |
---|---|---|
committer | Georg | 2021-08-06 23:10:22 +0200 |
commit | c662c9525e98661d6965348d50432879b46d15bf (patch) | |
tree | 3a7a28ad598bc8eede8bb75e56ff6f3fb62f3fe4 | |
parent | 244d4641473f440f1adafd26e8707af56143e84b (diff) | |
download | testing-c662c9525e98661d6965348d50432879b46d15bf.tar.gz testing-c662c9525e98661d6965348d50432879b46d15bf.tar.bz2 testing-c662c9525e98661d6965348d50432879b46d15bf.zip |
Init Pipeline
Signed-off-by: Georg <georg@lysergic.dev>
-rw-r--r-- | .drone.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..5d65082 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +--- +kind: pipeline +type: ssh +name: lcwww + +server: + host: + from_secret: host110 + user: + from_secret: user + ssh_key: + from_secret: ssh_key + +steps: +- name: deploy + commands: + - /opt/scripts/confirm-test.sh + +trigger: + branch: + - master + event: + - push |