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

19 lines
233 B
YAML

stages:
- docs
pages:
stage: docs
image: python:3.8-buster
before_script:
- pip install -r requirements.txt
script:
- mkdocs build
- mv site public
artifacts:
paths:
- public
only:
- master