Merge pull request #81 from kathenas/ks_03 #119
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: Update API docs | |
| on: push | |
| jobs: | |
| report: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout code | |
| uses: actions/checkout@v3 | |
| - name: update api docs | |
| run: | | |
| cd scripts | |
| ./generate-docs.sh | |
| - name: Commit API documentation | |
| uses: EndBug/add-and-commit@v8 | |
| with: | |
| default_author: github_actions | |
| message: '[web-bot] updated auto-generated documentation' | |
| add: 'docs/documentation/*.html --force' |