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

12 lines
223 B
YAML

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