landingpage/.drone.yml

28 lines
569 B
YAML
Raw Normal View History

2022-08-06 20:25:26 +02:00
kind: pipeline
name: build and publish site
steps:
- name: build
image: klakegg/hugo:ext-alpine-ci
commands:
- hugo --minify
- name: publish
image: itsblue.dev/plugins/codeberg-pages-deploy
settings:
folder: public
2022-08-06 21:46:56 +02:00
ssh_key:
from_secret: gitea-ssh-key
- name: put app.bluerock.dev into domains
image: alpine
commands:
- echo "app.bluerock.dev" > public/.domains
- name: publish
image: itsblue.dev/plugins/codeberg-pages-deploy
settings:
folder: public
git_branch: pages-app
2022-08-06 20:25:26 +02:00
ssh_key:
from_secret: gitea-ssh-key