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