website/.gitlab-ci.yml

26 lines
409 B
YAML
Raw Permalink Normal View History

2023-12-19 05:08:51 +00:00
image: python:3.11
before_script:
2023-12-19 05:08:51 +00:00
- python3 -m venv venv
- venv/bin/pip install 'Nikola[extras]'
- venv/bin/nikola theme -i bootstrap3
2020-05-30 21:09:35 +00:00
build:
stage: build
script:
2023-12-19 05:08:51 +00:00
- venv/bin/nikola build
2020-05-30 21:09:35 +00:00
- mv output public
artifacts:
paths:
- public
pages:
script:
2023-12-19 05:08:51 +00:00
- venv/bin/nikola build
2020-05-30 21:09:35 +00:00
- mv output public
artifacts:
paths:
2020-05-30 21:09:35 +00:00
- public
only:
2020-05-30 21:09:35 +00:00
- master@openlp/website