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.
23 lines
440 B
YAML
23 lines
440 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build
|
|
image: ghcr.io/getzola/zola:v0.17.2
|
|
entrypoint: ["/bin/zola"]
|
|
command: ["build"]
|
|
|
|
- name: deploy
|
|
image: drillster/drone-rsync
|
|
settings:
|
|
hosts: ["it-new.pedf.cuni.cz"]
|
|
user: drone
|
|
source: public/*
|
|
target: /home/www/web-kittv/
|
|
recursive: true
|
|
delete: true
|
|
environment:
|
|
RSYNC_KEY:
|
|
from_secret: ssh_private_key
|