From b021ce209d52eeab93389365cc13ec0d98a7c5c5 Mon Sep 17 00:00:00 2001 From: Lyonnet Date: Fri, 29 Nov 2024 14:52:29 +0800 Subject: [PATCH] CI fix --- .github/workflows/build-and-test.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 6a6f9ec..1d60639 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -92,8 +92,8 @@ jobs: - run: | ls download - unzip download/\*.zip -d dist - ls -al dist + unzip download/\*.zip -d download + ls -al download upload_all: @@ -104,17 +104,18 @@ jobs: if: startsWith(github.ref, 'refs/tags/') with: pattern: curl_cffi-* - path: dist + path: download # - uses: pypa/gh-action-pypi-publish@v1.8.14 # if: startsWith(github.ref, 'refs/tags/') # with: # password: ${{ secrets.PYPI_TOKEN }} + # packages-dir: download/ # - name: Upload release files # if: startsWith(github.ref, 'refs/tags/') # uses: softprops/action-gh-release@v2 # with: # files: | - # ./dist/*.whl - # ./dist/*.tar.gz + # ./download/*.whl + # ./download/*.tar.gz