Skip to content

Commit

Permalink
Fix the publishing the releases
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Bednar <[email protected]>
  • Loading branch information
lukas-bednar committed Jun 6, 2023
1 parent 1debcd3 commit dbd592c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/*

0 comments on commit dbd592c

Please sign in to comment.