16 lines
252 B
YAML
16 lines
252 B
YAML
|
kind: pipeline
|
||
|
type: exec
|
||
|
name: default
|
||
|
|
||
|
trigger:
|
||
|
branches:
|
||
|
- master
|
||
|
event:
|
||
|
- push
|
||
|
|
||
|
steps:
|
||
|
- name: deploy
|
||
|
environment:
|
||
|
TARGET: /srv/drone/deploy/site/private/participativeaftermovie
|
||
|
commands:
|
||
|
- rsync -a --delete src/ $${TARGET}/
|