From ec3e715f5733df90d804843c7246e725582df10c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ruilong=20Li=28=E6=9D=8E=E7=91=9E=E9=BE=99=29?= Date: Wed, 16 Oct 2024 01:46:06 -0400 Subject: [PATCH] Fix PyPI upload missing whl file (#454) --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c9a52d579..553c8529a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -106,5 +106,6 @@ jobs: env: PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} run: | + BUILD_NO_CUDA=1 python -m build twine upload --username __token__ --password $PYPI_TOKEN dist/* - shell: bash \ No newline at end of file + shell: bash