mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-05 19:00:32 -05:00
25 lines
483 B
YAML
25 lines
483 B
YAML
name: github pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Use OCaml 4.14.x
|
|
uses: ocaml/setup-ocaml@v2
|
|
with:
|
|
ocaml-compiler: 4.14.x
|
|
dune-cache: true
|
|
|
|
- name: Deploy odoc to GitHub Pages
|
|
uses: ocaml/setup-ocaml/deploy-doc@v2
|
|
with:
|
|
destination-dir: dev
|
|
enable-jekyll: true
|