Files
recastnavigation/.github/workflows/Docs.yaml
Graham Pentheny c126555c10 Explicitly specify Ubuntu 24.04 rather than ubuntu-latest (#749)
Since ubuntu-latest is using 22.04, and the version of doxygen it uses is generating some incorrect headers.
2024-12-31 00:29:23 -05:00

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