slpkg/.gitlab-ci.yml

25 lines
340 B
YAML
Raw Normal View History

2023-06-12 08:14:12 +02:00
image: python:3.8-buster
before_script:
- pip install -r requirements.txt
test:
stage: test
2023-06-12 09:00:47 +02:00
only:
- site
2023-06-12 08:14:12 +02:00
script:
- mkdocs build --strict --verbose --site-dir test
artifacts:
paths:
- test
pages:
stage: deploy
2023-06-12 08:56:38 +02:00
only:
- site
2023-06-12 08:14:12 +02:00
script:
- mkdocs build --strict --verbose
artifacts:
paths:
- public