Skip to content

bump version to 4.2.5 (#564) #92

bump version to 4.2.5 (#564)

bump version to 4.2.5 (#564) #92

Workflow file for this run

name: Publish Docs
on:
workflow_dispatch:
release:
types: [published]
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
publish-doc:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python-version: ["3.10"]
steps:
- name: Checkout Github Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Python Packages
# if: steps.pip-cache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt
- name: Run build-sphinx
run: |
make doc
- name: Deploy gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html_doc