docs #5
This file contains 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: docs | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version to generate documentation for' | |
required: true | |
jobs: | |
build-and-publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install --no-root | |
- name: Generate documentation | |
run: | | |
poetry run python docs/scripts/convert_docstrings_to_markdown.py | |
- name: Apply readme.io metadata to markdown files | |
run: | | |
poetry run python docs/scripts/apply_metadata_to_markdown.py | |
- name: Publish documentation to readme.io | |
uses: readmeio/rdme@v8 | |
with: | |
rdme: docs ./docs --key=${{ secrets.README_TOKEN }} --version=${{ inputs.version }} |