Skip to content

feat: raw endpoint, configurable rate limits, health ping, gb delete/… #15

feat: raw endpoint, configurable rate limits, health ping, gb delete/…

feat: raw endpoint, configurable rate limits, health ping, gb delete/… #15

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write # needed to push to gh-pages branch
jobs:
deploy:
name: Build & deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # git-revision-date plugin needs full history
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install MkDocs + Material
run: |
pip install \
mkdocs-material \
mkdocs-minify-plugin
- name: Copy logo into docs/assets
run: cp static/logo.png docs/assets/logo.png
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force --clean