From bd30a43f23772ff32719bb7e8a7df06e3ae2de83 Mon Sep 17 00:00:00 2001 From: acereca Date: Tue, 12 Jun 2018 14:28:39 +0200 Subject: [PATCH] trying sphinx doc publish --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b98ed4..29f6783 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,3 +10,18 @@ compile_pdf: paths: - tikz/*.pdf +pages: + image: alpine + script: + - apk --no-cache add py2-pip python-dev + - pip install sphinx + - apk --no-cache add make + - cd data/raspi-i2c/docs + - make html + - mv _build/html/ ../../../public/ + artifacts: + paths: + - public + only: + - master +