Skip to content

Commit b375630

Browse files
committed
Use python module invocation for twine
1 parent 1dd8e33 commit b375630

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ jobs:
7878
7979
- name: Check package
8080
run: |
81-
twine check dist/*
81+
python -m twine check dist/*
8282
8383
- name: Publish to PyPI
8484
if: startsWith(github.ref, 'refs/tags/v')
8585
run: |
86-
twine upload dist/*
86+
python -m twine upload dist/*
8787
env:
8888
TWINE_USERNAME: __token__
8989
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)