Skip to content

Commit

Permalink
Fix mutability bug in upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
taobrienlbl committed Sep 11, 2024
1 parent ec61aec commit 75c3ffc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:


build_arch_wheels:
name: ${{ matrix.python }} on ${{ matrix.arch }}
name: ${{ matrix.python }}-${{ matrix.arch }}
runs-on: ubuntu-24.04
strategy:
matrix:
Expand Down Expand Up @@ -94,6 +94,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: arch-wheels-${{ matrix.python }}-${{ matrix.arch }}
path: wheelhouse/*.whl

build_wheels:
Expand Down Expand Up @@ -132,6 +133,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.python }}-${{ matrix.arch }}
path: wheelhouse/*.whl

upload_all:
Expand All @@ -142,7 +144,8 @@ jobs:
steps:
- uses: actions/[email protected]
with:
name: artifact
name: artifact-*
merge-multiple: true
path: dist

- name: List all files
Expand Down

0 comments on commit 75c3ffc

Please sign in to comment.