1
0
mirror of https://gitlab.com/openlp/website.git synced 2024-07-27 18:58:19 +00:00
website/.gitlab-ci.yml
2020-05-30 21:09:35 +00:00

26 lines
432 B
YAML

image: alpine
before_script:
- apk --no-cache add make openssh-client py3-setuptools py3-pip python3-dev py3-pillow py3-lxml
- pip3 install nikola
- nikola theme -i bootstrap3
build:
stage: build
script:
- nikola build
- mv output public
artifacts:
paths:
- public
pages:
script:
- nikola build
- mv output public
artifacts:
paths:
- public
only:
- master@openlp/website