Skip to content

adding photo of exhibit #114

adding photo of exhibit

adding photo of exhibit #114

Workflow file for this run

name: Publish docs via GitHub
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install deps
run: pip install -r requirements.txt
- name: Show versions
run: |
python -V
pip show mkdocs mkdocs-material mkdocs_ipynb || true
mkdocs --version || true
- name: Configure git user
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Deploy docs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mkdocs gh-deploy --force --clean