Skip to content

correct typo in uv build command #6

correct typo in uv build command

correct typo in uv build command #6

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- 'v*'
jobs:
publish:
name: Publish to PyPI
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write
steps:
- uses: actions/[email protected]
- name: Install uv and setup Python
uses: astral-sh/[email protected]
with:
enable-cache: true
- name: Install the project
run: uv sync --all-groups --all-extras
- name: Build Wheel
run: uv build
- name: Publish Package
run: uv publish --trusted-publishing always