mirror of
https://gitlab.com/openlp/website.git
synced 2024-10-31 16:52:25 +00:00
26 lines
432 B
YAML
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
|