Skip to content

Commit

Permalink
Download / upload to create combine artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias authored Mar 12, 2024
1 parent f7815c0 commit fc3fa37
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit fc3fa37

Please sign in to comment.