From 9d0621a967a66800d6af4adda3991339c8427710 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Thu, 21 Sep 2023 16:25:45 +0200 Subject: Enabled CI/CD --- .gitlab-ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitlab-ci.yml (limited to '.gitlab-ci.yml') 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 -- cgit v1.3.1