Skip to content

Merge pull request #191 from jalkestrup/main #370

Merge pull request #191 from jalkestrup/main

Merge pull request #191 from jalkestrup/main #370

Workflow file for this run

# creates the documentation on pushes it to the gh-pages branch
name: Documentation
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Dependencies
run: make install
- name: Build and Deploy
if: github.event_name == 'push'
run: uv run mkdocs gh-deploy --force
- name: Build
if: github.event_name == 'pull_request'
run: make build-docs