Merge pull request #762 from jagannathhari/demo-select-all #14
This file contains hidden or 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 github.io | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build-documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: apt-update | |
| run: sudo apt-get update -qq | |
| - name: apt-get doxygen | |
| run: sudo apt-get install -y doxygen | |
| - name: build doc | |
| run: make docs | |
| - name: deploy | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./doc/html/ | |
| enable_jekyll: false | |
| allow_empty_commit: false | |
| force_orphan: true |