website/.gitlab-ci.yml

26 lines
409 B
YAML

image: python:3.11
before_script:
- python3 -m venv venv
- venv/bin/pip install 'Nikola[extras]'
- venv/bin/nikola theme -i bootstrap3
build:
stage: build
script:
- venv/bin/nikola build
- mv output public
artifacts:
paths:
- public
pages:
script:
- venv/bin/nikola build
- mv output public
artifacts:
paths:
- public
only:
- master@openlp/website