From 7a5a6f0d6f35efee9ddb1243528bbdcf3e53e2e0 Mon Sep 17 00:00:00 2001 From: Dario Malchiodi Date: Sun, 13 Oct 2024 18:18:25 +0200 Subject: [PATCH] added correct env pypi variable --- .github/workflows/python-publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 155cf0d..b5b6982 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -27,7 +27,8 @@ jobs: - name: Build a binary wheel and a source tarball run: python3 -m build - name: Publish Python 🐍 distribution 📦 to PyPI - env: PYPI_TOKEN = ${{ secrets.PYPI_TOKEN }} + env: + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} run: python -m twine upload dist/* --username __token__ \ --passowrd $PYPI_TOKEN