From fbf4acfed257ee64332da015661e945ea45793f8 Mon Sep 17 00:00:00 2001 From: Leo Q Date: Mon, 23 Oct 2023 18:59:17 +0800 Subject: [PATCH] update wheelhouse path --- .github/workflows/publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61fedf7b..1803189e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,13 +18,12 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse - - name: Clean linux_x86_64.whl - run: rm dist/*-linux_x86_64.whl - name: Check build result - run: ls -lh dist/ + run: ls -lh wheelhouse/ - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: + packages-dir: wheelhouse/ skip_existing: true user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}