mirror of
https://gitlab.waag.org/make/fablab/interns/2025/sam.git
synced 2025-08-02 19:34:56 +00:00
23 lines
336 B
YAML
23 lines
336 B
YAML
image: python:latest
|
|
|
|
before_script:
|
|
- time apt update
|
|
- time pip install -r requirements.txt
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- time mkdocs build --site-dir public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
changes:
|
|
- "docs/**/*"
|
|
- "mkdocs.yml"
|
|
|
|
|
|
|
|
|