Bump actions/setup-python from 4 to 5 #38
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: Update documentation | |
on: push | |
jobs: | |
build: | |
name: Build docs | |
runs-on: ubuntu-latest | |
if: ${{ github.ref != 'refs/heads/main' }} | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10.8' | |
- name: Install mkdocs requirements | |
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter | |
- name: Install project requirements | |
run: pip install -r requirements.txt | |
- name: Install project | |
run: pip install . | |
- name: Build docs | |
run: | | |
mkdocs build | |
deploy: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
if: ${{ github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10.8' | |
- name: Install mkdocs requirements | |
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter | |
- name: Install project requirements | |
run: pip install -r requirements.txt | |
- name: Install project | |
run: pip install . | |
- name: Deploy docs | |
run: | | |
mkdocs gh-deploy --force |