itsblue-website/.drone.yml

42 lines
667 B
YAML
Raw Permalink Normal View History

2022-08-05 14:47:21 +02:00
---
2022-08-03 11:42:42 +02:00
kind: pipeline
2022-08-05 14:47:21 +02:00
name: production
2022-08-03 11:42:42 +02:00
steps:
- name: build
image: klakegg/hugo:ext-alpine-ci
2022-08-03 12:02:46 +02:00
commands:
- hugo --minify
2022-08-03 11:42:42 +02:00
- name: publish
image: itsblue.dev/plugins/codeberg-pages-deploy
settings:
folder: public
ssh_key:
2022-08-05 14:47:21 +02:00
from_secret: gitea-ssh-key
trigger:
branch:
- main
---
kind: pipeline
name: dev
steps:
- name: build
image: klakegg/hugo:ext-alpine-ci
commands:
2022-08-07 10:32:20 +02:00
- hugo --config config.dev.yaml --minify
2022-08-05 14:49:03 +02:00
- rm public/.domains
2022-08-05 14:47:21 +02:00
- name: publish
image: itsblue.dev/plugins/codeberg-pages-deploy
settings:
folder: public
git_branch: pages-dev
ssh_key:
from_secret: gitea-ssh-key
trigger:
branch:
- dev