gcg-website/.gitlab-ci.yml

20 lines
419 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
test:
script:
- hugo
except:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
interruptible: true
2022-05-23 17:38:21 +02:00
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:
2022-10-15 19:06:38 +02:00
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
interruptible: true