Bump version: 1.0.2 → 1.1.0 #8
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 docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
# Only rebuild website when docs have changed | |
- 'README.md' | |
- 'CHANGELOG.md' | |
- 'CONTRIBUTING.md' | |
- 'docs/**' | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install numpy | |
python -m pip install .["docs"] | |
- name: Deploy docs | |
run: mkdocs gh-deploy --force -f docs/mkdocs.yml |