Update .gitlab-ci.yml file

This commit is contained in:
Denys Konovalov 2022-06-22 19:27:10 +00:00
parent 6abd6c34ae
commit 7850584848

18
.gitlab-ci.yml Normal file

@ -0,0 +1,18 @@
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
pages:
script:
- hugo --gc --minify --cleanDestinationDir
artifacts:
paths:
- public
only:
variables:
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH