1
0
mirror of https://gitlab.com/simple-stock-bots/simple-stock-bot.git synced 2025-06-16 07:16:40 +00:00
Simple-Stock-Bot/.gitlab-ci.yml

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