From a09f3bc5d7661a7f4abc4cc37c47e087295fe794 Mon Sep 17 00:00:00 2001
From: Jeremy Commins <commins.jeremy@gmail.com>
Date: Tue, 2 Oct 2018 15:58:15 +0200
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 313f2b0..da820a4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,12 +2,13 @@ image: python:3.6-alpine
 
 pages:
   script:
-  - apk add --no-cache pkg-config
-  - apk add --no-cache pkgconfig
-  - apk add --no-cache freetype
-  - pip install -r requirements.txt
+  - apk --no-cache add py3-pip python-dev
+  - pip install sphinx
+  - apk --no-cache add make
+  - cd docs && make html
+  - mv build/html/ public/
   artifacts:
     paths:
     - public
   only:
-  - master
+  - master
\ No newline at end of file
-- 
GitLab