From 174e004b7cee3e0a6a5e6ec71ad8870cc6e26d2a Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 13:40:15 -0600 Subject: [PATCH] a --- action.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 57c9dbc..c31ba7b 100644 --- a/action.yaml +++ b/action.yaml @@ -14,9 +14,19 @@ inputs: runs: using: "composite" steps: + - name: Install uv + uses: astral-sh/setup-uv@v8.1.0 + with: + version: "0.11.14" + + - name: Set venv + run: uv venv + + - name: Install python + run: uv python install - name: Install build and twine - run: pip install build twine + run: uv pip install build twine - name: Install PyPI config run: $GITHUB_ACTION_PATH/install_pypi_config.sh