Improve observer when robot yaw is +/- pi #238
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: Doxygen Documentation | |
on: | |
# Triggers the action on push or pull request events but only for the main branch | |
push: | |
branches: [ main ] | |
# Allows you to run this action manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy_doxy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: Install Doxygen | |
run: sudo apt-get install doxygen -y | |
shell: bash | |
- name: Generate Doxygen Documentation | |
run: doxygen doxygen | |
shell: bash | |
- name: Deploy to Github Pages | |
uses: JamesIves/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
branch: gh_pages | |
folder: docs/html |