gcg-website/.gitlab-ci.yml
Denys Konovalov e85873cb7d Revert "Update .gitlab-ci.yml file"
This reverts commit d2174b6eba22556ae62c54c8891b25ed2c0d7bc6
2022-10-15 17:38:06 +00:00

20 lines
419 B
YAML

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
pages:
script:
- hugo --gc --minify --cleanDestinationDir
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
interruptible: true