ocaml-containers/.github/workflows/gh-pages.yml
Fardale 53f2ffca9f CI: fix gh-page
odig need the package to be installed to compile the documentations
2023-02-15 18:31:59 +01:00

33 lines
798 B
YAML

name: github pages
on:
push:
branches:
- master # Set a branch name to trigger deployment
jobs:
deploy:
name: Deploy doc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Use OCaml
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: '4.14.x'
dune-cache: false
- name: Deps
run: opam install odig containers containers-data containers-thread
- name: Build
run: opam exec -- odig odoc --cache-dir=_doc/ containers containers-data containers-thread
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_doc/html/
destination_dir: dev
enable_jekyll: true