Skip to content

Commit 465ba78

Browse files
Fix publish workflow (#399)
1 parent 21fde1f commit 465ba78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ jobs:
144144
name: python-package-distributions
145145
path: dist/
146146
- name: Ensure exactly one sdist and one wheel have been downloaded
147-
run: test $(ls *.tar.gz | wc -l) = 1 && test $(ls *.whl | wc -l) = 1
147+
run: test $(ls dist/*.tar.gz | wc -l) = 1 && test $(ls dist/*.whl | wc -l) = 1
148148
- name: Publish distribution to PyPI
149149
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)