Merge pull request #328 from Manojkumarmuru/efficientpose #143
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: Publish Website | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- run: python -m pip install --upgrade pip | |
- run: pip install mkdocs-material | |
- run: pip install . --user | |
- run: python docs/autogenerate_documentation.py | |
- run: | | |
cd docs/ | |
mkdocs gh-deploy --force |