Use uv
in first-party "publish" CI workflow
#666
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: Build package / publish | |
on: | |
# On PR commits, check build completes w/o error. | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
# Publish on any push of a new tag, including | |
# 'v*rc*' pushed to a PR branch. | |
tags: [ "v*" ] | |
# Publish on new releases. | |
release: | |
types: [ published ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# On 'pull_request' and some 'push' events, | |
# setuptools-scm will produce version '0.1.dev1'. | |
# To confirm that setuptools-scm generates the | |
# correct version string, uncomment these lines | |
# and adjust fetch-depth. | |
# with: | |
# fetch-depth: 10 | |
# fetch-tags: true | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
cache-dependency-glob: "**/pyproject.toml" | |
python-version: "3.13" | |
- name: Build | |
run: uv build | |
- name: Publish | |
if: >- | |
github.event_name == 'release' || ( | |
github.event_name == 'push' | |
&& startsWith(github.ref, 'refs/tags') | |
) | |
run: uv publish --trusted-publishing=always |