This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
geeklabor_legacy/.drone.yml

45 lines
848 B
YAML
Raw Normal View History

2019-01-13 15:58:22 +01:00
---
kind: pipeline
name: default
steps:
- name: build-draft
2018-12-20 10:49:51 +01:00
image: plugins/hugo
2019-01-13 16:09:18 +01:00
settings:
hugoVersion: 0.52
validate: true
buildDrafts: true
buildExpired: true
buildFuture: true
theme: geeklab
2019-01-13 16:17:48 +01:00
when:
branch: [ draft ]
event: [ push ]
2018-12-20 00:13:43 +01:00
2019-01-13 15:58:22 +01:00
- name: build
2018-12-20 10:49:51 +01:00
image: plugins/hugo
2019-01-13 16:09:18 +01:00
settings:
hugoVersion: 0.52
validate: true
theme: geeklab
2019-01-13 16:17:48 +01:00
when:
branch: [ master ]
event: [ push ]
2018-12-20 00:13:43 +01:00
2019-01-13 15:58:22 +01:00
- name: publish
image: appleboy/drone-scp
2019-01-13 16:09:18 +01:00
settings:
source: public/*
target: /var/www/virtual/geeklab/html/geeklabor.de/
2019-01-13 16:14:24 +01:00
host:
from_secret: ssh_host
username:
from_secret: ssh_username
key:
from_secret: ssh_key
2019-01-13 16:09:18 +01:00
strip_components: 1
rm: true
2019-01-13 16:17:48 +01:00
when:
branch: [ master ]
event: [ push ]