mirror of
https://gitlab.com/simple-stock-bots/simple-stock-bot.git
synced 2025-06-16 15:17:28 +00:00
22 lines
288 B
YAML
22 lines
288 B
YAML
stages:
|
|
- docs
|
|
|
|
pages:
|
|
stage: docs
|
|
image: python:alpine
|
|
|
|
before_script:
|
|
- pip install mkdocs
|
|
- pip install mkdocs-material
|
|
|
|
script:
|
|
- cd ./web
|
|
- mkdocs build
|
|
- mv site ../public
|
|
- cd ../
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- documentation
|