34 lines
747 B
YAML
34 lines
747 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: deploy to docker container
|
||
|
steps:
|
||
|
- name: deploy via ssh
|
||
|
image: appleboy/drone-ssh
|
||
|
settings:
|
||
|
host: dev.autonomic.zone
|
||
|
port: 222
|
||
|
username: gno
|
||
|
key:
|
||
|
from_secret: drone_ssh_dev.autonomic.zone
|
||
|
script:
|
||
|
- cd /var/www/gno
|
||
|
- git pull
|
||
|
- composer install
|
||
|
- name: notify on failure
|
||
|
image: plugins/slack
|
||
|
settings:
|
||
|
username: comradebritney
|
||
|
channel: clients.goodnightout
|
||
|
template: "{{repo.owner}}/{{repo.name}} build failed: {{build.link}}. Last commit by @{{build.author}}"
|
||
|
webhook:
|
||
|
from_secret: rc_builds_url
|
||
|
depends_on:
|
||
|
- deploy via ssh
|
||
|
when:
|
||
|
status:
|
||
|
- failure
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- dev
|