From e52cea366a9d193a87aa70980343e1a64b5ad1e1 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Thu, 14 May 2026 13:37:53 -0600 Subject: [PATCH] a --- action.yaml | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/action.yaml b/action.yaml index 36999f7..57c9dbc 100644 --- a/action.yaml +++ b/action.yaml @@ -14,22 +14,9 @@ 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 - shell: bash - - - name: Install python - run: uv python install - shell: bash - name: Install build and twine - run: uv pip install build twine - shell: bash + run: pip install build twine - name: Install PyPI config run: $GITHUB_ACTION_PATH/install_pypi_config.sh @@ -37,8 +24,6 @@ runs: - name: Build project run: python -m build - shell: bash - name: Publish package run: python -m twine upload --repository repo ./dist/* - shell: bash