From f889a2c58bebb09008a902885123b8a5ec19ac5a Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Sun, 14 Jan 2024 19:54:36 +0100 Subject: [PATCH] github-actions: fix twine upload directory --- .github/workflows/test-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index f1ad849a..e163f245 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -237,7 +237,7 @@ jobs: ls -R dist - name: Upload to PyPI using twine - run: twine upload --skip-existing wheelhouse/* + run: twine upload --skip-existing dist/* env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}