mirror of
https://gitlab.com/simple-stock-bots/simple-stock-bot.git
synced 2025-06-15 23:06:40 +00:00
18 lines
216 B
YAML
18 lines
216 B
YAML
image: python:alpine
|
|
|
|
before_script:
|
|
- pip install mkdocs
|
|
|
|
- pip install mkdocs-material
|
|
|
|
pages:
|
|
script:
|
|
- cd ./web
|
|
- mkdocs build
|
|
- mv site public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
only:
|
|
- master
|