Skip to content
Snippets Groups Projects
Commit 4684feb8 authored by Troy Lindsay's avatar Troy Lindsay
Browse files

Update GitLab CI section of README to match

parent d462165d
Branches
No related tags found
No related merge requests found
...@@ -18,15 +18,22 @@ defined in [`.gitlab-ci.yml`](.gitlab-ci.yml): ...@@ -18,15 +18,22 @@ defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
image: python:3.8-buster image: python:3.8-buster
before_script: before_script:
- pip install mkdocs - pip install -r requirements.txt
## Add your custom theme if not inside a theme_dir
## (https://github.com/mkdocs/mkdocs/wiki/MkDocs-Themes) test:
# - pip install mkdocs-material stage: test
script:
- mkdocs build --strict --verbose --site-dir test
artifacts:
paths:
- test
except:
- master
pages: pages:
stage: deploy
script: script:
- mkdocs build - mkdocs build --strict --verbose
- mv site public
artifacts: artifacts:
paths: paths:
- public - public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment