help/.gitlab-ci.yml

23 lines
432 B
YAML
Raw Permalink Normal View History

2024-01-23 11:50:11 +00:00
#
# All available Hugo versions are listed under https://gitlab.com/pages/hugo/container_registry.
#
image: registry.gitlab.com/pages/hugo/hugo:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
2024-01-23 11:50:11 +00:00
stages:
- build
pages:
stage: build
script:
- hugo
- cp public/en/404.html public/404.html
2024-01-23 11:50:11 +00:00
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
environment: production