Skip to content

Bump actions/checkout from 3 to 4 (#2) #34

Bump actions/checkout from 3 to 4 (#2)

Bump actions/checkout from 3 to 4 (#2) #34

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@v4
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@v4
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