Dorian Zedler
c323444595
Some checks reported errors
continuous-integration/drone/push Build encountered an error
28 lines
No EOL
569 B
YAML
28 lines
No EOL
569 B
YAML
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
|
|
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
|
|
ssh_key:
|
|
from_secret: gitea-ssh-key |