ocaml-opentelemetry/.github/workflows/gh-pages.yml
Simon Cruanes a4a5143fa2
CI
2026-02-26 10:08:07 -05:00

37 lines
1 KiB
YAML

name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
# needed for depext to work
- run: sudo apt-get update && sudo apt-get install mccs
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: '5.1.x'
dune-cache: true
allow-prerelease-opam: true
#
# TODO: remove when it's on opam
- run: opam pin ambient-context https://github.com/ocaml-tracing/ocaml-ambient-context.git -y -n
- name: Deps
run: opam install odig opentelemetry opentelemetry-lwt opentelemetry-client-ocurl opentelemetry-cohttp-lwt
- name: Build
run: opam exec -- odig odoc --cache-dir=_doc/ opentelemetry opentelemetry-lwt opentelemetry-client-ocurl opentelemetry-cohttp-lwt
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_doc/html
enable_jekyll: false