lissarchive-website/.gitlab-ci.yml

21 lines
345 B
YAML
Raw Normal View History

2017-05-02 02:12:37 +00:00
image: registry.gitlab.com/paddy-hack/nikola
test:
script:
- pip3 install requests python-dateutil feedparser
2017-07-18 22:17:45 +00:00
- ./import_feed.py
2017-05-02 02:12:37 +00:00
- nikola build
except:
- master
pages:
script:
- pip3 install requests python-dateutil feedparser
2017-07-18 22:17:45 +00:00
- ./import_feed.py
2017-05-02 02:12:37 +00:00
- nikola build
artifacts:
paths:
2017-05-02 02:56:26 +00:00
- public
2017-05-02 02:12:37 +00:00
only:
2017-05-02 02:56:26 +00:00
- master