Skip to content

Bump version 0.10.0 → 0.10.1 #55

Bump version 0.10.0 → 0.10.1

Bump version 0.10.0 → 0.10.1 #55

Workflow file for this run

name: github-pages
on:
push:
tags:
- 'v*'
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
with:
persist-credentials: false
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: "3.11"
- name: Install hatch
run: |
pip install hatch
- name: Build documentation
run: |
hatch run docs:make html
- name: Deploy to GitHub Pages
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html/
if: ${{ !env.ACT }}