fix(audio): fix request_format for Albert integration #799
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |