From bfdfd781c0ce4327fe15b467e2150b7130b958b5 Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Tue, 17 Dec 2024 08:51:52 -0500 Subject: [PATCH] add twine to workflow --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c08b9ce..9c8de63 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,8 +46,9 @@ jobs: env: PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} run: | + python -m pip install --upgrade twine # Ensure twine is installed twine upload --non-interactive --disable-progress-bar \ - -u __token__ -p "${PYPI_API_TOKEN}" dist/* + -u __token__ -p "${PYPI_API_TOKEN}" dist/* # Step 7: Extract Tag Version - name: Extract Tag Version