docs/.gitlab-ci.yml
2023-02-11 03:50:29 +00:00

25 lines
345 B
YAML

image: python:3.8-buster
before_script:
- pip install -r requirements.txt
test:
stage: test
script:
- mkdocs build --verbose --site-dir test
artifacts:
paths:
- test
except:
- master
pages:
stage: deploy
script:
- mkdocs build --verbose
artifacts:
paths:
- public
only:
- master