Skip to content
Snippets Groups Projects
.gitlab-ci.yml 263 B
Newer Older
image: python:3.8-buster

variables:
  GIT_SUBMODULE_STRATEGY: recursive

pages:
  stage: deploy
  before_script:
  - pip install Markdown gitpython pelican py_w3c beautifulsoup4
  script:
  - make publish
  artifacts:
    paths:
    - public/
  only:
  - master