From 63dc43d5ec5eedc9d4c24e63102f100efc63f51a Mon Sep 17 00:00:00 2001 From: heevasti Date: Mon, 14 Oct 2024 16:41:19 +0200 Subject: [PATCH] [stable-0-46] Trying to fix issue with Pypi uploading with tags --- .github/workflows/pypi-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 38e8140..50f6fb8 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -39,7 +39,7 @@ jobs: run: python -m build --sdist --wheel - name: Publish package + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: python -m twine upload --verbose dist/* - with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }}