mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
33 lines
760 B
YAML
33 lines
760 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'
|
|
dune-cache: false
|
|
|
|
- name: Deps
|
|
run: opam install odig containers containers-data
|
|
|
|
- name: Build
|
|
run: opam exec -- odig odoc --cache-dir=_doc/ containers containers-data
|
|
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./_doc/html/
|
|
destination_dir: dev
|
|
enable_jekyll: true
|