diff options
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51df12b..fc8eea9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,13 +45,11 @@ test: pages: needs: [ "test" ] - image: node:10 + image: pandoc/alpine stage: build script: - - npm install gitbook-cli -g - - gitbook fetch 3.2.3 - - gitbook install - - gitbook build . public + - mkdir public + - pandoc --standalone README.md -o public/index.html artifacts: paths: - public |