website/.gitlab-ci.yml
Pierre-Olivier Mercier 8590be81a1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci: restrict pages deployment to master and main branches
2026-05-17 23:10:53 +08:00

18 lines
333 B
YAML

#
# All available Hugo versions are listed under https://gitlab.com/pages/hugo/container_registry.
#
image: hugomods/hugo:node-non-root
stages:
- build
pages:
stage: build
script:
- npm ci
- hugo
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == "master" || $CI_COMMIT_BRANCH == "main"