From e5273c8f363c4b5553409fde2c36fe5b2c6cab3e Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 13:29:12 -0600 Subject: [PATCH] a --- action.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index f93b026..36999f7 100644 --- a/action.yaml +++ b/action.yaml @@ -23,6 +23,10 @@ runs: run: uv venv shell: bash + - name: Install python + run: uv python install + shell: bash + - name: Install build and twine run: uv pip install build twine shell: bash @@ -36,5 +40,5 @@ runs: shell: bash - name: Publish package - run: python3 -m twine upload --repository repo ./dist/* + run: python -m twine upload --repository repo ./dist/* shell: bash