Skip to content

Fix an error introduced in f9fa35ef caused by Range refactoring. #358

Fix an error introduced in f9fa35ef caused by Range refactoring.

Fix an error introduced in f9fa35ef caused by Range refactoring. #358

Workflow file for this run

name: Deploy documentation to pages
on:
push:
branches: [ master ]
jobs:
build-documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run Doxygen
uses: mattnotmitt/[email protected]
with:
doxyfile-path: 'Doxyfile'
working-directory: 'docs'
- name: Pages Deployment
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/gen/html/
enable_jekyll: false
allow_empty_commit: false
force_orphan: true
publish_branch: github-pages