From dbd592c1c2f9a8bec6b1099b7c65b6a8e8e0b08a Mon Sep 17 00:00:00 2001 From: Lukas Bednar Date: Tue, 6 Jun 2023 07:07:17 +0200 Subject: [PATCH] Fix the publishing the releases Signed-off-by: Lukas Bednar --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3b89f89..db19975 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - python-version: [3.8, 3.9, 3.10] # Add or remove Python versions as needed + python-version: ["3.8", "3.9", "3.10"] # Add or remove Python versions as needed steps: - name: Set up Python @@ -31,6 +31,6 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | - python setup.py sdist bdist_wheel + python setup.py sdist pip install twine twine upload dist/*