From ba9839262bfd3c341a27262c42109688d34c9d65 Mon Sep 17 00:00:00 2001 From: Matthias Schmidtblaicher Date: Fri, 2 Feb 2024 18:04:58 +0100 Subject: [PATCH] add suggestions --- .github/workflows/build_wheels.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index c63bad97..36f17d57 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -23,6 +23,7 @@ jobs: - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl + name: wheels build_sdist: name: Build source distribution @@ -40,6 +41,7 @@ jobs: - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz + name: sdist upload_testpypi: if: github.event_name == 'release' && github.event.action == 'published' @@ -53,7 +55,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact_testpypi + merge-multiple: true path: dist - uses: pypa/gh-action-pypi-publish@v1.8.11 with: @@ -71,8 +73,6 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact_pypi path: dist - pattern: artifact_* merge-multiple: true - uses: pypa/gh-action-pypi-publish@v1.8.11