Skip to content

chore: bump version to 0.9.2 #56

chore: bump version to 0.9.2

chore: bump version to 0.9.2 #56

Workflow file for this run

name: Documentation
on:
workflow_dispatch:
push:
branches: [main]
jobs:
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Set PY variable
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- name: Install hatch
run: pip install hatch
- name: Set up Git
run: |
git config user.name ${{ github.actor }}
git config user.email ${{ github.actor }}@users.noreply.github.com
- name: Build documentation
run: |
git fetch origin gh-pages
hatch -e docs run mike delete main
hatch -e docs run mike deploy --push main