21 lines
311 B
YAML
21 lines
311 B
YAML
---
|
|
kind: pipeline
|
|
name: production
|
|
|
|
steps:
|
|
- name: build
|
|
image: klakegg/hugo:ext-alpine-ci
|
|
commands:
|
|
- npm i
|
|
- hugo --minify
|
|
|
|
- name: publish
|
|
image: itsblue.dev/plugins/codeberg-pages-deploy
|
|
settings:
|
|
folder: public
|
|
ssh_key:
|
|
from_secret: gitea-ssh-key
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|