mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
26 lines
409 B
YAML
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
|