Skip to content
Snippets Groups Projects
.gitlab-ci.yml 344 B
Newer Older
  • Learn to ignore specific revisions
  • # This file is a template, and might need editing before it works on your project.
    # Full project: https://gitlab.com/pages/plain-html
    
    
    image: python:3.8-slim
    
    
    stages:
    
      - build
    
        - pip3 install -r requirements.txt
    
        - sphinx-build -b html docs/source/ public/
    
      artifacts:
        paths:
          - public
    
      only:
        - master