1
0
mirror of https://gitlab.com/simple-stock-bots/docs.git synced 2025-06-15 14:56:39 +00:00
Simple-Stock-Bot-Docs/.gitlab-ci.yml
2023-04-10 15:00:53 -06:00

12 lines
237 B
YAML

image: python:3.11
pages:
stage: deploy
script:
- pip install -r requirements.txt
- mkdocs build --site-dir public --verbose
artifacts:
paths:
- public
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'