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
Robert Kaussow 206045607e
All checks were successful
continuous-integration/drone/push Build is passing
fix conditions
2019-01-13 16:14:24 +01:00

47 lines
891 B
YAML

---
kind: pipeline
name: default
steps:
- name: build-draft
image: plugins/hugo
settings:
hugoVersion: 0.52
validate: true
buildDrafts: true
buildExpired: true
buildFuture: true
theme: geeklab
when:
branch: [ draft ]
event: [ push ]
- name: build
image: plugins/hugo
settings:
hugoVersion: 0.52
validate: true
buildFuture: true
theme: geeklab
when:
branch: [ master ]
event: [ push ]
- name: publish
image: appleboy/drone-scp
settings:
source: public/*
target: /var/www/virtual/geeklab/html/geeklabor.de/
host:
from_secret: ssh_host
username:
from_secret: ssh_username
key:
from_secret: ssh_key
strip_components: 1
rm: true
when:
branch: [ master ]
event: [ push ]