From 97c43dc8c6d09c4a3ca8f71d648ad94055f23a12 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 1 Feb 2024 18:02:25 -0500 Subject: [PATCH] ci: use multiple artifact names Signed-off-by: Henry Schreiner --- .github/workflows/emscripten.yaml | 1 + .github/workflows/tests.yml | 1 + .github/workflows/wheels.yml | 6 +++++- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/emscripten.yaml b/.github/workflows/emscripten.yaml index f6b84789..ee9b518d 100644 --- a/.github/workflows/emscripten.yaml +++ b/.github/workflows/emscripten.yaml @@ -63,4 +63,5 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: + name: emscripten-wheel path: dist/*.whl diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8fb4329c..0b0343d1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -115,6 +115,7 @@ jobs: - uses: actions/upload-artifact@v4 with: path: wheelhouse/* + name: test-wheels-${{ strategy.job-index }} - name: Check wheels run: pipx run twine check wheelhouse/* diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 2be3b433..f2a47d52 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -48,6 +48,7 @@ jobs: - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz + name: wheels-sdist build_arch_wheels: name: ${{ matrix.python }} on ${{ matrix.arch }} @@ -84,6 +85,7 @@ jobs: uses: actions/upload-artifact@v4 with: path: wheelhouse/*.whl + name: name: wheel-aarch-${{ strategy.job-index }} build_wheels: name: ${{ matrix.type }} ${{ matrix.arch }} on ${{ matrix.os }} @@ -125,6 +127,7 @@ jobs: uses: actions/upload-artifact@v4 with: path: wheelhouse/*.whl + name: name: wheels-${{ strategy.job-index }} upload_all: name: Upload if release @@ -134,7 +137,8 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact + pattern: wheels-* + merge-multiple: true path: dist - name: List all files