2022-07-02 15:55:22 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: build
|
2022-07-09 22:10:17 +02:00
|
|
|
image: klakegg/hugo:ext-alpine-ci
|
2022-07-02 15:55:22 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- live
|
|
|
|
|
|
|
|
- name: build-staging
|
2022-07-09 22:10:17 +02:00
|
|
|
image: klakegg/hugo:ext-alpine-ci
|
2022-07-09 22:07:20 +02:00
|
|
|
commands:
|
|
|
|
- hugo --baseURL="https://staging.www.iger.events/"
|
2022-07-02 15:55:22 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- live
|
|
|
|
|
|
|
|
- name: deploy
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings: &deploy-settings
|
|
|
|
host: apple.franconian.net
|
|
|
|
port: 2222
|
|
|
|
username: www-data
|
|
|
|
key:
|
|
|
|
from_secret: ssh_key
|
|
|
|
passphrase:
|
|
|
|
from_secret: ssh_passphrase
|
|
|
|
target: /var/www/www.iger.events/
|
|
|
|
source: public/*
|
|
|
|
strip_components: 1
|
|
|
|
rm: yes
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
- live
|
|
|
|
|
|
|
|
- name: deploy-staging
|
|
|
|
image: appleboy/drone-scp
|
|
|
|
settings:
|
|
|
|
<<: *deploy-settings
|
|
|
|
target: /var/www/staging.www.iger.events/
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
- main
|