doc: include: csp_rtable: Fix netmask typo on csp_rtable_set() #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sphinx Docs Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- develop | |
jobs: | |
build-docs: | |
if: github.repository_owner == 'libcsp' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup packages on Linux | |
if: ${{ runner.os == 'Linux' }} | |
working-directory: ./doc | |
run: | | |
sudo apt install libclang-dev | |
pip3 install -r requirements.txt | |
- name: Build | |
run: | | |
cmake -B build-docs -S doc | |
cmake --build build-docs | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
if: ${{ github.event_name == 'push' }} | |
with: | |
publish_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build-docs/html | |
force_orphan: true |