Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
python-version: '3.x'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Doxygen
run: apt-get install -y doxygen
- name: Install docs dependencies
run: pip install -r docs/requirements.txt
- name: Build C API reference
run: cd docs && python3 generate_llapi_reference.py && cd ..
- name: Build docs
run: mkdocs build
- uses: jakejarvis/s3-sync-action@master
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ venv*/
*.tar.gz
/VARIANT

# Docs API reference
docs/api_reference.md

### Cmake auto tools
cmake-build-debug

Expand Down
Loading