19 lines
318 B
YAML
19 lines
318 B
YAML
|
#
|
||
|
# All available Hugo versions are listed under https://gitlab.com/pages/hugo/container_registry.
|
||
|
#
|
||
|
image: registry.gitlab.com/pages/hugo/hugo:latest
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
before_script:
|
||
|
- git submodule init
|
||
|
- git submodule update
|
||
|
|
||
|
pages:
|
||
|
stage: build
|
||
|
script:
|
||
|
- hugo
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|