From 124c7c9bd88c97ef3b3ae7fc4ee9190f2589b320 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: Tue, 15 Oct 2024 22:45:56 -0700 Subject: [PATCH] Fix PyPI upload missing whl file --- .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 c9a52d57..553c8529 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