28 lines
551 B
YAML
28 lines
551 B
YAML
|
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
||
|
|
||
|
# Set this if you intend to use Git submodules
|
||
|
variables:
|
||
|
GIT_SUBMODULE_STRATEGY: recursive
|
||
|
HUGO_ENV: production
|
||
|
|
||
|
default:
|
||
|
before_script:
|
||
|
- apk add --update --no-cache git go
|
||
|
- git submodule update --init --recursive
|
||
|
- hugo mod init gitlab.com/pages/hugo
|
||
|
|
||
|
test:
|
||
|
script:
|
||
|
- make
|
||
|
rules:
|
||
|
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH
|
||
|
|
||
|
pages:
|
||
|
script:
|
||
|
- make
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|
||
|
rules:
|
||
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|