22 lines
464 B
YAML
22 lines
464 B
YAML
default:
|
|
image: "${CI_TEMPLATE_REGISTRY_HOST}/pages/hugo:latest"
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
test: # builds and tests your site
|
|
script:
|
|
- hugo
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
|
|
|
|
pages: # a predefined job that builds your pages and saves them to the specified path.
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
environment: production
|