gcg-website/.gitlab-ci.yml

16 lines
318 B
YAML
Raw Normal View History

2022-03-20 12:25:50 +00:00
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
2022-12-31 17:57:27 +00:00
2022-03-20 12:25:50 +00:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2022-12-31 17:57:27 +00:00
2022-05-23 15:38:21 +00:00
pages:
2022-03-20 12:25:50 +00:00
script:
2023-01-06 23:04:14 +00:00
- hugo --gc --minify
2023-01-06 23:19:46 +00:00
- find public -type f -print0 | xargs -0 gzip -9 -k
2022-03-20 12:25:50 +00:00
artifacts:
paths:
- public
2022-12-31 17:57:27 +00:00
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
2023-01-06 22:54:31 +00:00
interruptible: true