1
0
mirror of https://gitlab.com/openlp/website.git synced 2024-09-01 03:23:37 +00:00
website/.gitlab-ci.yml
2023-12-19 07:18:40 -07:00

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