aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 7bfc4b55f4782366c72ed711461bb4a0dc80d2c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: ocaml/opam:latest

before_script:
  - sudo opam install dune odoc

pages:
  stage: deploy
  script:
  - dune build @doc
  artifacts:
    paths:
    - _build/default/_doc/_html
  only:
  - master