From cdc2f7c1ffc18a7a9abe9f98c9af694e14e6ee3c Mon Sep 17 00:00:00 2001 From: Allan Kilpatrick Date: Sun, 25 Jan 2026 14:54:23 +0000 Subject: [PATCH] fix: UV venv system falg --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9449c2a..343cd4e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,9 @@ jobs: run: uv python install 3.12 - name: Install dependencies - run: uv pip install --system python-semantic-release + run: | + uv venv + uv pip install python-semantic-release - name: Configure git run: | @@ -39,6 +41,7 @@ jobs: env: GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} run: | + source .venv/bin/activate OUTPUT=$(semantic-release version 2>&1) || true echo "$OUTPUT" if echo "$OUTPUT" | grep -q "No release will be made"; then