slpkg/.gitlab-ci.yml

25 lines
349 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
2023-06-12 09:12:09 +02:00
#test:
# stage: test
# only:
# - site
# script:
# - mkdocs build --strict --verbose --site-dir test
# artifacts:
# paths:
# - test
2023-06-12 08:14:12 +02:00
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