From e68a0c76784c51417994378aa7b3082c91c8d51d Mon Sep 17 00:00:00 2001 From: Lyonnet Date: Sat, 30 Nov 2024 01:39:52 +0800 Subject: [PATCH] ci: test whether download-artifacts can merge together --- .github/workflows/build-and-test.yaml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index d257170..93f18f9 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -90,12 +90,6 @@ jobs: pattern: curl_cffi-* path: download - - run: | - ls download - unzip download/\*.zip -d download - ls -al download - - upload_all: needs: [bdist, sdist] runs-on: ubuntu-latest @@ -104,11 +98,10 @@ jobs: if: startsWith(github.ref, 'refs/tags/') with: pattern: curl_cffi-* - path: download + merge-multiple: true + path: dist - run: | - ls download - unzip download/\*.zip -d dist ls -al dist - uses: pypa/gh-action-pypi-publish@v1.8.14