summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Pages/Pelican.gitlab-ci.yml
blob: 3721344b21e23b575d13c1f8548585bee2009d9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Pages/Pelican.gitlab-ci.yml

# 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/
  environment: production