diff options
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ffac424 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,23 @@ +image: registry.gitlab.com/pages/hugo/hugo_extended:latest + +variables: + HUGO_ENV: production + +default: + before_script: + - git submodule update --init + +test: + script: + - hugo + rules: + - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH + +pages: + script: + - hugo + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH |
