From 59005eaa026c721b30ff5ea5f92266098fe4c69e Mon Sep 17 00:00:00 2001 From: whitews Date: Wed, 27 Mar 2024 14:31:12 -0400 Subject: [PATCH] trying fix for updated upload-artifact --- .github/workflows/wheels.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index bb6fa4c..1ee98f3 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -34,7 +34,7 @@ jobs: - name: Store artifacts uses: actions/upload-artifact@v4 with: - name: python-package-distributions + name: python-package-distributions-${{ matrix.os }} path: wheelhouse/*.whl merge-multiple: true @@ -62,9 +62,8 @@ jobs: - name: Store artifacts uses: actions/upload-artifact@v4 with: - name: python-package-distributions + name: python-package-distributions-src path: ./dist/*.tar.gz - merge-multiple: true retrieve_build_files: name: Retrieve build files @@ -75,10 +74,11 @@ jobs: steps: - name: Download build files - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: python-package-distributions path: dist/ + pattern: python-package-distributions-* + merge-multiple: true - name: List files run: |