gcg-website/.gitlab-ci.yml

16 lines
319 B
YAML
Raw Normal View History

2022-03-20 13:25:50 +01:00
image: registry.gitlab.com/pages/hugo/hugo_extended:latest
2022-12-31 18:57:27 +01:00
2022-03-20 13:25:50 +01:00
variables:
GIT_SUBMODULE_STRATEGY: recursive
2022-12-31 18:57:27 +01:00
2022-05-23 17:38:21 +02:00
pages:
2022-03-20 13:25:50 +01:00
script:
2023-01-07 00:04:14 +01:00
- hugo --gc --minify
2023-01-07 00:12:10 +01:00
- gzip -k -9 $(find -printf '"%p"\n' public -type f)
2022-03-20 13:25:50 +01:00
artifacts:
paths:
- public
2022-12-31 18:57:27 +01:00
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
2023-01-06 23:54:31 +01:00
interruptible: true