gcg-website/.gitlab-ci.yml

18 lines
375 B
YAML
Raw Normal View History

2022-03-20 12:25:50 +00:00
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
variables:
GIT_SUBMODULE_STRATEGY: recursive
2022-05-23 15:38:21 +00:00
test:
script:
- hugo
except:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
pages:
2022-03-20 12:25:50 +00:00
script:
2022-03-20 16:37:31 +00:00
- hugo --gc --minify --cleanDestinationDir
2022-03-20 12:25:50 +00:00
artifacts:
paths:
- public
2022-05-23 15:38:21 +00:00
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH