mirror of
https://github.com/recastnavigation/recastnavigation.git
synced 2026-08-16 16:19:55 +00:00
Since ubuntu-latest is using 22.04, and the version of doxygen it uses is generating some incorrect headers.
30 lines
558 B
YAML
30 lines
558 B
YAML
name: Publish Docs
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install Doxygen
|
|
run: sudo apt-get install -y doxygen
|
|
|
|
- name: Build Doxygen Documentation
|
|
run: doxygen ./Doxyfile
|
|
|
|
- name: Deploy Documentation
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
folder: ./Docs/html
|
|
branch: gh-pages
|