diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-06-23 22:11:11 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2024-06-23 22:11:11 -0700 |
commit | 6a5c93766fe1052c4f5b54b3f0ba937299fdf3d3 (patch) | |
tree | a79786b4c626a719fd1ee59b57abe5fd174a0f34 | |
parent | c323f67bb3c9136382ed9cf97bcab2e71f13d982 (diff) | |
download | simponic.xyz-6a5c93766fe1052c4f5b54b3f0ba937299fdf3d3.tar.gz simponic.xyz-6a5c93766fe1052c4f5b54b3f0ba937299fdf3d3.zip |
ci
-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..cc716f6 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +kind: pipeline +type: docker +name: deploy + +steps: + - name: ssh + image: appleboy/drone-ssh + settings: + host: levi.simponic.xyz + username: root + key: + from_secret: SSH_KEY + port: 22 + command_timeout: 2m + script: + - cd /var/www/html/simponic.xyz && git pull + +trigger: + branch: + - main + event: + - push |