Implemented RobotWebSession.has_control and made take_control wait fo… #81
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: dependencies | |
env: | |
dependency_packages: doxygen | |
run: sudo apt-get update && sudo apt-get -y install ${dependency_packages} | |
- name: build | |
run: cd doc && doxygen ./Doxyfile | |
- name: deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./doc/html |