Bump greenlet from 3.2.0 to 3.2.1 (#300) #836
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: Deploy Docs | |
on: | |
- push | |
env: | |
PYTHON_VERSION: 3.9 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
- name: Install Doc dependencies | |
run: pip install mkdocs-material | |
- name: Build Docs | |
run: mkdocs build | |
- name: Deploy | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }} | |
run: mkdocs gh-deploy --force |