Skip to content

Bump version: 10.2.28 → 10.2.29 #168

Bump version: 10.2.28 → 10.2.29

Bump version: 10.2.28 → 10.2.29 #168

name: CI-GitHub-Pages
on:
push:
tags:
- '*'
jobs:
documentation:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install poetry
- name: Render
run: |
poetry install --all-extras
poetry run sphinx-build doc/source doc/build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/build
force_orphan: true