release: v0.3.2 (#53) #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs | |
on: | |
push: | |
tags: | |
- "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 && uv sync --no-dev --inexact --directory python | |
- name: Deploy | |
run: | | |
VERSION=$(git describe --tags --match="v*" --abbrev=0) | |
uv run mike deploy $VERSION latest --update-aliases --push |