Enable position step commands in joint mode #105
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 | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- .github/workflows/doxygen.yml | |
# keep in sync with doxygen_add_docs() at doc/CMakeLists.txt | |
- 'README.md' | |
- 'doc/**' | |
- 'examples/**' | |
- 'libraries/**' | |
- 'programs/**' | |
- 'share/**' | |
- 'tests/**' | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: fkirc/skip-duplicate-actions@master | |
with: | |
cancel_others: 'true' | |
- run: sudo apt-get install -qq --no-install-recommends doxygen texlive-bibtex-extra | |
- uses: actions/checkout@v2 | |
- run: cmake -S doc -B doc/build | |
- run: cmake --build doc/build --target dox | |
- uses: crazy-max/ghaction-github-pages@v2 | |
with: | |
build_dir: doc/build/html | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |