gcg-website/.gitlab-ci.yml

18 lines
375 B
YAML
Raw Normal View History

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