Skip to content

Commit

Permalink
Fix pypi-publish.yml for paths with spaces (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored Jul 22, 2024
1 parent 8d05111 commit 04c58aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
f.write(f"TWINE_PASSWORD={pypi_token}\n")
shell: python
- run: twine upload --skip-existing $(find dist/ -type f -name 'bcrypt*')
- run: find dist/ -type f -name 'bcrypt*' -print0 | xargs -0 twine upload --skip-existing

# Do not perform attestation for things for TestPyPI. This is because
# there's nothing that would prevent a malicious PyPI from serving a
Expand Down

0 comments on commit 04c58aa

Please sign in to comment.