14 lines
279 B
YAML
14 lines
279 B
YAML
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
HUGO_ENV: production
|
|
|
|
pages:
|
|
script:
|
|
- hugo -vDEF --gc --minify
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|