37 lines
995 B
YAML
37 lines
995 B
YAML
# hugo.yml
|
|
#
|
|
# Takes a repository with Hugo source, generates the static site and
|
|
# pushes the result to Codeberg pages
|
|
#
|
|
# Needs a codeberg access token (codeberg_token) as a secret in Woodpecker config
|
|
# Make sure the codeberg_token has "Repository and Organization Access" -> "package" -> "Read and Write"
|
|
# Also uses another secret (mail) with email address for git config
|
|
#
|
|
# .domains file in the repository is copied to the output branch so custom domains work
|
|
#
|
|
# The HUGO_OUTPUT variable must be set to the build output folder configured in Hugo
|
|
#
|
|
|
|
# Exclude page pipeline to be run on "pages" branch
|
|
when:
|
|
branch:
|
|
exclude: pages
|
|
event: [push, pull_request]
|
|
|
|
# Recursive cloning is used to fully clone the themes given as Git submodules
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
recursive: true
|
|
|
|
steps:
|
|
# Build hugo static files
|
|
build:
|
|
image: hugomods/hugo:exts
|
|
commands:
|
|
- hugo --minify
|
|
when:
|
|
event: [pull_request, push]
|
|
|
|
|