aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMantas Vilčinskas <hi@mnts.lt>2020-10-27 22:20:02 +0200
committerGitHub <noreply@github.com>2020-10-27 22:20:02 +0200
commit4b6a7cdde04cadc4d5a0b6329cbd31cf0f095d1c (patch)
treee4ed28529256605b77511ce18d0a26a735628787 /.gitlab-ci.yml
parent494518cd4e75129287716945baf8d50720781ddd (diff)
parent12a01dcc6cc82c550ebd7c7c1d3906be99f2327e (diff)
Updated to v4.4
Updated to v4.4
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..af5fabc
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,28 @@
+# SERVING CSTATE ON GITLAB PAGES
+# Introduced in v4.2.1
+#
+# This file is very similar to the existing GitLab template, and might need editing before it works on your project.
+#
+# All available Hugo versions are listed here:
+# https://gitlab.com/pages/hugo/container_registry
+#
+# cState uses Hugo Extended.
+image: registry.gitlab.com/pages/hugo/hugo_extended:0.65.3
+
+variables:
+ GIT_SUBMODULE_STRATEGY: recursive
+
+test:
+ script:
+ - hugo
+ except:
+ - master
+
+pages:
+ script:
+ - hugo
+ artifacts:
+ paths:
+ - public
+ only:
+ - master