Skip to content

Update cibuildwheels to include python 3.13 (#7) #38

Update cibuildwheels to include python 3.13 (#7)

Update cibuildwheels to include python 3.13 (#7) #38

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Build treams
run: python -m pip install -e .
- name: Build html
run: |
python -m pip install treams[docs]
sphinx-build -b html docs docs/_build/html
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: html-docs
path: docs/_build/html/
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html