Skip to content
Snippets Groups Projects
.gitlab-ci.yml 314 B
Newer Older
Bertrand  NÉRON's avatar
Bertrand NÉRON committed
image: registry-gitlab.pasteur.fr/hub-courses/sphinx-env

sphinx:
  stage: build
  script:
    - make html
    - mv build/html/ .
  artifacts:
    paths:
      - html/
  dependencies:
    - sphinx
    - mv html/ public/
  artifacts:
    paths:
      - public
  only: