15 lines
329 B
YAML
15 lines
329 B
YAML
variables:
|
|
HUGO_ENV: production
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
pages:
|
|
# This image is compatible with GitLab's shell-based runners
|
|
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
script:
|
|
- hugo version
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == "master" |