27 lines
646 B
YAML
27 lines
646 B
YAML
---
|
|
kind: pipeline
|
|
name: publish to beta.lumbung.space
|
|
steps:
|
|
- name: generate new contents
|
|
image: python:alpine
|
|
environment:
|
|
OUTPUT_DIR: output
|
|
CALENDAR_URL: "https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"
|
|
commands:
|
|
- mkdir -p output
|
|
- ./generate.sh
|
|
|
|
- name: publish new contents
|
|
image: 3wordchant/docker-cp-deploy:latest
|
|
settings:
|
|
host: lumbung.space
|
|
service: beta_lumbung_space_app
|
|
source: output
|
|
dest: /src/content
|
|
chdir: /drone/src
|
|
deploy_key:
|
|
from_secret: drone_ssh_lumbung.space
|
|
trigger:
|
|
branch:
|
|
- main
|