Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.6.4 to 1.8.10 #23

build(deps): bump pypa/gh-action-pypi-publish from 1.6.4 to 1.8.10

build(deps): bump pypa/gh-action-pypi-publish from 1.6.4 to 1.8.10 #23

Workflow file for this run

name: Generate Docs
on:
pull_request
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install docs dependencies
run: |
pip install --upgrade pip
pip install '.[docs]'
- name: Generate docs
run: |
gendoc --codeFence --fileHeaders --output docs/README.md
- name: Push docs
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Generate docs
file_pattern: docs/*