CI: restore opam analysis #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
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 |