gcg-website/.gitlab-ci.yml

15 lines
287 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:
2022-12-31 18:57:27 +01:00
- hugo --gc --minify
2023-01-03 13:28:56 +01:00
- gzip -k -9 public/*
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
2022-10-15 19:06:38 +02:00
interruptible: true