blob: c5f3154f587d84d5ca38df93d880b38912ef5c4e (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Full project: https://gitlab.com/pages/pelican
image: python:2.7-alpine
pages:
script:
- pip install -r requirements.txt
- pelican -s publishconf.py
artifacts:
paths:
- public/
|