Skip to content

Bump version: 9.25.15 → 9.25.16 #84

Bump version: 9.25.15 → 9.25.16

Bump version: 9.25.15 → 9.25.16 #84

name: CI-GitHub-Pages
on:
push:
tags:
- '*'
jobs:
documentation:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Python${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Render
run: |
tox -e doc_gh_pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/build_gh_pages