diff --git a/action.yaml b/action.yaml index 28f6123..1c936d9 100644 --- a/action.yaml +++ b/action.yaml @@ -19,8 +19,8 @@ runs: with: version: "0.11.14" - - name: Install and activate venv - run: uv venv && source .venv/bin/activate + - name: Install venv + run: uv venv - name: Install build and twine run: uv pip install build twine @@ -30,7 +30,7 @@ runs: shell: bash - name: Build project - run: python -m build + run: uv python -m build - name: Publish package - run: python -m twine upload --repository repo ./dist/* + run: uv python -m twine upload --repository repo ./dist/*