mirror of
https://gitlab.com/simple-stock-bots/docs.git
synced 2025-06-16 07:16:39 +00:00
20 lines
264 B
YAML
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
|