2022-03-23 22:07:01 +01:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: release
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
|
|
|
image: ghcr.io/getzola/zola:v0.15.3
|
2023-08-02 12:07:35 +02:00
|
|
|
commands:
|
|
|
|
- zola build
|
2022-03-23 22:07:01 +01:00
|
|
|
- name: upload
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings:
|
|
|
|
host: git.tilera.org
|
|
|
|
username: webmaster
|
|
|
|
password:
|
|
|
|
from_secret: web_pw
|
|
|
|
port: 2220
|
|
|
|
target: /home/webmaster/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}
|
|
|
|
source: public/*
|
|
|
|
rm: true
|
|
|
|
strip_components: 1
|
|
|
|
when:
|
|
|
|
branch: master
|
|
|
|
event: push
|
|
|
|
depends_on:
|
|
|
|
- build
|