Skip to content
Snippets Groups Projects
Commit 50535eb9 authored by Vladimir Shushlin's avatar Vladimir Shushlin
Browse files

Merge branch 'readme' into 'master'

Update GitLab CI section of README to match

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