Python 3.12 compatibility (#236) #31
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 Develop Docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: pip install -r requirements/build-docs.txt | |
- name: Publish Develop Docs | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
cd docs | |
mike deploy --push develop |