Updating static reosurces on taxonomy explorer #23
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 updated docs to gh-pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "mkdocs/**" | |
jobs: | |
publish_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install -r mkdocs/requirements.txt | |
- name: Publish docs | |
run: mkdocs gh-deploy -v -f mkdocs/mkdocs.yml --force | |