website/.gitlab-ci.yml
Pierre-Olivier Mercier 5ca57619c6
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci: restrict pages deployment to master and main branches
2026-06-03 20:36:47 +09:00

18 lines
333 B
YAML

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