You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
350 B
YAML
21 lines
350 B
YAML
2 years ago
|
kind: pipeline
|
||
|
name: publish-schemas
|
||
|
|
||
|
clone:
|
||
|
depth: 1
|
||
|
|
||
|
|
||
|
steps:
|
||
|
- name: publish
|
||
|
image: drillster/drone-rsync
|
||
|
settings:
|
||
|
key:
|
||
|
from_secret: BLOG_DEPLOY_KEY
|
||
|
user: blog
|
||
|
delete: true
|
||
|
recursive: true
|
||
|
hosts: ["schemas.ndumas.com"]
|
||
|
source: /drone/src/
|
||
|
target: /var/www/schemas.ndumas.com/
|
||
|
include: ["*.schema.json"]
|