From ade74b845c2f317f83397e04df082191f93a9643 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 13:49:42 -0600 Subject: [PATCH] a --- action.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 1c936d9..a8efcfd 100644 --- a/action.yaml +++ b/action.yaml @@ -22,6 +22,9 @@ runs: - name: Install venv run: uv venv + - name: Install python + run: uv python install + - name: Install build and twine run: uv pip install build twine @@ -30,7 +33,7 @@ runs: shell: bash - name: Build project - run: uv python -m build + run: source .venv/bin/activate && python -m build - name: Publish package - run: uv python -m twine upload --repository repo ./dist/* + run: source .venv/bin/activate && python -m twine upload --repository repo ./dist/*