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/*