Skip to content

fix(install): fix FreeBSD build syntax error and unify script staging #53

fix(install): fix FreeBSD build syntax error and unify script staging

fix(install): fix FreeBSD build syntax error and unify script staging #53

Workflow file for this run

name: docs
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Doxygen
run: sudo apt-get install -y doxygen
- name: Install Python dependencies
run: pip install sphinx breathe furo
- name: Generate Doxygen XML
run: doxygen Doxyfile
- name: Build Sphinx HTML
run: sphinx-build -b html docs docs/_build/html
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_build/html
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deploy
uses: actions/deploy-pages@v4