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
2020-05-21 01:54:40 -07:00

20 lines
264 B
YAML

stages:
- docs
pages:
stage: docs
image: python:alpine
before_script:
- pip install -r requirements.txt
script:
# - cp LICENSE docs/LICENSE.md
- mkdocs build
- mv site public
artifacts:
paths:
- public
only:
- master