Skip to content

Fix inaccurate population choropleth description in NB04 #51

Fix inaccurate population choropleth description in NB04

Fix inaccurate population choropleth description in NB04 #51

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
paths:
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
workflow_dispatch: # Allow manual trigger
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install MkDocs and dependencies
run: |
pip install mkdocs-material
pip install pymdown-extensions
- name: Build documentation
run: mkdocs build --verbose
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force --clean --verbose