mirror of
https://git.tacowolf.net/TacoWolf/tacowolf.net.git
synced 2026-01-14 04:20:18 -05:00
21 lines
347 B
YAML
21 lines
347 B
YAML
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
|
|
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
test:
|
|
script:
|
|
- hugo
|
|
except:
|
|
variables:
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
pages:
|
|
script:
|
|
- hugo
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
variables:
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|