37 lines
897 B
YAML
37 lines
897 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: deploy to docker container
|
||
|
steps:
|
||
|
- name: hugo build
|
||
|
image: plugins/hugo
|
||
|
hugo_version: 0.87
|
||
|
validate: true
|
||
|
- name: docker cp deploy
|
||
|
image: 3wordchant/docker-cp-deploy:latest
|
||
|
settings:
|
||
|
host: swarm.autonomic.zone
|
||
|
service: customhtml_sophielewis_lasophielle_app
|
||
|
source: public/
|
||
|
dest: /usr/share/nginx/html
|
||
|
deploy_key:
|
||
|
from_secret: drone_ssh_swarm.autonomic.zone
|
||
|
depends_on:
|
||
|
- hugo build
|
||
|
- name: notify on failure
|
||
|
image: plugins/slack
|
||
|
settings:
|
||
|
username: comradebritney
|
||
|
channel: internal.robot-test-zone
|
||
|
template: "{{repo.owner}}/{{repo.name}} build failed: {{build.link}}. Last commit by @{{build.author}}"
|
||
|
webhook:
|
||
|
from_secret: rc_builds_url
|
||
|
depends_on:
|
||
|
- docker cp deploy
|
||
|
when:
|
||
|
status:
|
||
|
- failure
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|