Skip to content

Commit

Permalink
Fix publish workflow (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed May 16, 2024
1 parent 21fde1f commit 465ba78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ jobs:
name: python-package-distributions
path: dist/
- name: Ensure exactly one sdist and one wheel have been downloaded
run: test $(ls *.tar.gz | wc -l) = 1 && test $(ls *.whl | wc -l) = 1
run: test $(ls dist/*.tar.gz | wc -l) = 1 && test $(ls dist/*.whl | wc -l) = 1
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 465ba78

Please sign in to comment.