From fc3fa37caa4f99596335a95a2219f5b106afc682 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 12 Mar 2024 06:39:15 +0100 Subject: [PATCH] Download / upload to create combine artifact --- .github/workflows/builder.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index fa3180b..f50b400 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -53,5 +53,23 @@ jobs: - name: Archive artifacts uses: actions/upload-artifact@v4 with: - name: pyarrow_wheels + name: pyarrow-wheels-${{ matrix.python-version }} path: ./assets/dist/ + + + combine: + runs-on: ubuntu-latest + needs: build + steps: + - name: Download all artifacts + uses: actions/download-artifact@v4 + with: + path: pyarrow_wheels + pattern: pyarrow-wheels-* + merge-multiple: true + + - name: Upload combined artifacts + uses: actions/upload-artifact@v4 + with: + name: pyarrow-wheels-combined + path: pyarrow_wheels/