From 44d355d953ee337bba8b9823521ac918563209c2 Mon Sep 17 00:00:00 2001 From: "Gabe@w7dev" Date: Mon, 26 Jan 2026 09:17:09 +0000 Subject: [PATCH] fix(ci): use uv build instead of python -m build uv build handles venv creation internally, avoiding the "No virtual environment found" error. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/cd-release.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/cd-release.yml b/.github/workflows/cd-release.yml index ec71bed3..66dbcb56 100644 --- a/.github/workflows/cd-release.yml +++ b/.github/workflows/cd-release.yml @@ -57,12 +57,9 @@ jobs: - name: Set up Python run: uv python install ${{ env.PYTHON_VERSION }} - - name: Install build dependencies - run: uv pip install build - - name: Build package run: | - python -m build + uv build ls -la dist/ - name: Upload release assets