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