From 6962b5fc5c57d8e4af87b33d018be61511116a4f Mon Sep 17 00:00:00 2001 From: funkypenguin Date: Sun, 16 Jul 2017 00:19:20 +1200 Subject: [PATCH] Fix missing step to install pymdown-extensions in CI build stage --- .gitlab-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6a81f21..cf1e332 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,15 +5,10 @@ stages: image: python:alpine -#before_script: -# - pip install mkdocs -# # add your custom theme (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes) if not inside a theme_dir -# # - pip install mkdocs-material - build site: stage: build script: - - pip install mkdocs + - pip install mkdocs mkdocs-material pymdown-extensions - mkdocs build - mv site public artifacts: