Skip to content

Update latest_docs.yml #2

Update latest_docs.yml

Update latest_docs.yml #2

Workflow file for this run

name: Build/Publish Develop Docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
- uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install Dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install -e ".[dev,docs]"
- name: Setup Docs Deploy
run: |
git config --global user.name "Docs Deploy"
git config --global user.email "[email protected]"
- name: Build Docs Website
run: mike deploy --push develop