free_zed.gitlab.io/.gitlab-ci.yml

25 lines
596 B
YAML
Raw Normal View History

image: python:3.9-alpine
2019-01-09 20:07:07 +00:00
publish:
2019-01-15 15:06:32 +00:00
except:
- production
- devel
2019-01-15 15:06:32 +00:00
script:
- pip install -r requirements.txt
- pelican -s pubconf-devel.py --fatal warnings
- pelican -s pubconf-production.py --fatal warnings
2019-01-15 15:06:32 +00:00
2019-01-09 20:07:07 +00:00
pages:
2019-01-15 15:06:32 +00:00
only:
- production
2019-01-09 20:07:07 +00:00
script:
- pip install -r requirements.txt
- date --utc +%H:%M > theme-uberspot/templates/time
- date --utc +%d/%m/%Y > theme-uberspot/templates/date
- echo $CI_COMMIT_SHORT_SHA > theme-uberspot/templates/commit
- pelican -s "pubconf-${CI_COMMIT_REF_NAME}.py" --fatal warnings
2019-01-09 20:07:07 +00:00
artifacts:
when: on_success
paths:
- public