Skip to content

fix(ci): upload glob for python wheels #49

fix(ci): upload glob for python wheels

fix(ci): upload glob for python wheels #49

Workflow file for this run

name: Docs
on:
push:
tags:
- "python-v*"
workflow_dispatch:
permissions:
contents: write
pages: write
jobs:
docs:
runs-on: ubuntu-latest
env:
GIT_COMMITTER_NAME: ci-bot
GIT_COMMITTER_EMAIL: [email protected]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # for git describe
- uses: Swatinem/rust-cache@v2
- uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Install Python
run: uv python install # we use uv instead of setup-python so we get python-version resolution between our two packages
- name: Sync
run: uv sync --extra docs && uv sync --no-dev --inexact --project stacrs
- name: Deploy
run: |
VERSION=$(git describe --tags --match="python-v*" --abbrev=0)
uv run mike deploy $VERSION latest --update-aliases --push