Added callbacks for node errors and fifo overflow
📚 Docs / deploy (push) Failing after 7s
🧪 Test / test (push) Has been cancelled

Add new doc system which should/might deploy to pages.
This commit is contained in:
2026-06-19 22:26:39 +02:00
parent 79916f1da1
commit 6f384dc4b5
30 changed files with 1192 additions and 82 deletions
+41
View File
@@ -0,0 +1,41 @@
name: '📚 Docs'
on:
push:
branches:
- master
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'examples/**/*.cpp' # snippet sources
workflow_dispatch:
jobs:
deploy:
runs-on: linux/amd64
container:
image: python:3.12-slim
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # full history needed for mkdocs gh-deploy
- name: Install MkDocs dependencies
run: pip install --quiet -r docs/requirements.txt
- name: Configure git identity
run: |
git config user.name "Gitea Actions"
git config user.email "actions@gitea.tourolle.paris"
- name: Build and deploy to gitea-pages branch
env:
GH_TOKEN: ${{ github.token }}
run: |
mkdocs gh-deploy \
--force \
--remote-branch gitea-pages \
--remote-name origin \
--message "docs: deploy from ${{ github.sha }}"