mirror of
https://gitlab.waag.org/make/fablab/interns/2025/sam.git
synced 2025-08-03 03:44:58 +00:00
18 lines
334 B
YAML
18 lines
334 B
YAML
image: python:latest
|
|
|
|
before_script:
|
|
- time apt update
|
|
- time pip install -r requirements.txt
|
|
- time cd mkdocs-ivory && python setup.py install && cd ..
|
|
|
|
pages:
|
|
stage: deploy
|
|
script:
|
|
- time mkdocs build --site-dir public
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|