26 lines
466 B
YAML
26 lines
466 B
YAML
kind: pipeline
|
|
name: production
|
|
when:
|
|
event: [ push ]
|
|
branch: [ main ]
|
|
|
|
clone:
|
|
git:
|
|
image: plugins/git
|
|
pull: true
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: drillster/drone-rsync
|
|
settings:
|
|
hosts:
|
|
from_secret: deploy_host
|
|
target: /var/www/quarante-douze.net/bl-themes/quarante-douze/
|
|
source: '*'
|
|
user:
|
|
from_secret: deploy_user
|
|
key:
|
|
from_secret: deploy_key
|
|
when:
|
|
branch: main
|
|
delete: true
|