Skip to content

version 3.64

version 3.64 #110

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- master
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
steps:
- name: Download source
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Install Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.x'
- name: Install Python dependencies
run: |
python -m pip install --upgrade hatch
- name: Build site
run: hatch -e docs run mkdocs build
- name: Deploy to gh-pages
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
uses: oprypin/push-to-gh-pages@b16c4c1926875f4d9fce26ffc60a623b003231d2 # v3.7.2
with:
publish_dir: site
commit_message: 'Generate docs: '