Skip to content

fix(audio): fix request_format for Albert integration #799

fix(audio): fix request_format for Albert integration

fix(audio): fix request_format for Albert integration #799

name: Generate documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types:
- published
- edited
workflow_call: # Add this to make the workflow reusable
workflow_dispatch: # Add this to allow manual triggering
jobs:
generate_documentation:
runs-on: ubuntu-latest
steps:
- name: Checkout du code
uses: actions/checkout@v4
- name: Configure Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[api,playground,dev]"
- name: Generate documentation
run: |
PYTHONPATH=. python ./scripts/docs/generate_configuration_documentation.py --output ./docs/docs/getting-started/configuration_file.md
PYTHONPATH=. python ./scripts/docs/convert_notebooks_to_docs.py
- name: Commit documentation
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update docs
file_pattern: ./docs/docs/getting-started/configuration_file.md ./docs/docs/guides/*.md