aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a6e7ec8..33827f6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -43,3 +43,18 @@ test:
reports:
junit: report.xml
+pages:
+ needs: [ "test" ]
+ image: node:10
+ stage: build
+ script:
+ - npm install gitbook-cli -g
+ - gitbook fetch 3.2.3
+ - gitbook install
+ - gitbook build . public
+ artifacts:
+ paths:
+ - public
+ only:
+ - master
+