CI: try to fix gh-pages

This commit is contained in:
Simon Cruanes 2026-01-20 20:57:57 -05:00
parent e8e6e621bc
commit 2c756473dd
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -3,21 +3,15 @@ name: github pages
on: on:
push: push:
branches: branches:
- master # Set a branch name to trigger deployment - main
jobs: jobs:
deploy: deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: write
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@main
- name: Cache opam
id: cache-opam
uses: actions/cache@v2
with:
path: ~/.opam
key: opam-ubuntu-latest-4.12.0
- uses: ocaml/setup-ocaml@v3 - uses: ocaml/setup-ocaml@v3
with: with:
ocaml-compiler: '5.03' ocaml-compiler: '5.03'
@ -39,5 +33,5 @@ jobs:
with: with:
github_token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/default/_doc/_html/ publish_dir: ./_build/default/_doc/_html/
destination_dir: dev destination_dir: .
enable_jekyll: true enable_jekyll: false