Add .gitlab-ci.yml
authorChris Cormack <chris@bigballofwax.co.nz>
Sat, 2 Sep 2017 06:37:55 +0000 (06:37 +0000)
committerChris Cormack <chris@bigballofwax.co.nz>
Sat, 2 Sep 2017 06:37:55 +0000 (06:37 +0000)
.gitlab-ci.yml [new file with mode: 0644]

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644 (file)
index 0000000..ea5060c
--- /dev/null
@@ -0,0 +1,13 @@
+image: debian:unstable
+
+pages:
+  script:
+  - apt-get install python3-sphinx  python3-sphinxcontrib.spelling 
+  - cd en
+  - make html
+  - mv _build/html/ public/
+  artifacts:
+    paths:
+    - public
+  only:
+  - master