website/.gitlab-ci.yml

26 lines
432 B
YAML
Raw Normal View History

image: alpine
before_script:
2020-05-30 21:09:35 +00:00
- apk --no-cache add make openssh-client py3-setuptools py3-pip python3-dev py3-pillow py3-lxml
- pip3 install nikola
- nikola theme -i bootstrap3
2020-05-30 21:09:35 +00:00
build:
stage: build
script:
- nikola build
- mv output public
artifacts:
paths:
- public
pages:
script:
2020-05-30 21:09:35 +00:00
- nikola build
- 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