From 465ba786ca98b99e75905fe2aaa98131ef27d54c Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Thu, 16 May 2024 15:16:41 -0400 Subject: [PATCH] Fix publish workflow (#399) --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b69e73e..fc787c9a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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