Use taskflow subflow for graph execution to allow timing of execution #286
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: Deploy Documentation | |
on: | |
push: | |
branches: | |
- master | |
# allow manually starting this workflow | |
workflow_dispatch: | |
jobs: | |
deploy_documentation: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Doxygen Documentation | |
uses: mattnotmitt/doxygen-action@v1 | |
with: | |
doxyfile-path: 'docs/doxygen.config' | |
- name: Deploy Documentation | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
deploy_key: ${{ secrets.DOCS_DEPLOY_KEY }} | |
publish_dir: ./docs | |
destination_dir: tesseract_planning | |
keep_files: true | |
external_repository: tesseract-robotics/tesseract_docs |