Skip to content

fix: bump minimum python version #11

fix: bump minimum python version

fix: bump minimum python version #11

Workflow file for this run

name: Docs
on:
push:
branches:
- gh-pages
tags:
- "v*"
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v3
- name: Sync
run: uv sync
- name: Push
if: github.event_name == 'push' && startsWith(github.ref_name, 'v')
run: uv run mike deploy ${{ github.ref_name }} latest --push
env:
GIT_COMMITTER_NAME: ci-bot
GIT_COMMITTER_EMAIL: [email protected]
- name: Checkout gh-pages
run: git checkout gh-pages
- uses: actions/upload-pages-artifact@v3
id: deployment
with:
path: .
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/deploy-pages@v4
id: deployment