17 lines
286 B
YAML
17 lines
286 B
YAML
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
|
|
|
pages:
|
|
before_script:
|
|
- apk add --update --no-cache openssh
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH |