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:
|
2022-12-31 17:57:27 +00:00
|
|
|
- hugo --gc --minify
|
2023-01-03 12:08:52 +00:00
|
|
|
- find public -type f -regex '.*\.\(htm\|html\|txt\|text\|js\|css\)$' -exec gzip -f -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
|
2022-10-15 17:06:38 +00:00
|
|
|
interruptible: true
|