Skip to content

Commit

Permalink
Update wheel workflow artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Apr 11, 2024
1 parent a0d045a commit e366431
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/nightly_wheel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ jobs:
- uses: actions/download-artifact@v4
id: download
with:
name: wheels
name: skimage-wheels-*
path: ./dist
merge-multiple: true

- name: Upload wheel
uses: scientific-python/upload-nightly-action@b67d7fcc0396e1128a474d1ab2b48aa94680f9fc # 0.5.0
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/wheel_tests_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
- uses: actions/download-artifact@v4
id: download
with:
name: wheels
name: skimage-wheels-*
path: ./dist
merge-multiple: true

- name: Build the source distribution
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels_recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
SKIMAGE_LINK_FLAGS: "-Wl,--strip-debug"
- uses: actions/upload-artifact@v4
with:
name: wheels
name: skimage-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./dist/*.whl

build_linux_aarch64_wheels:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
SKIMAGE_LINK_FLAGS: "-Wl,--strip-debug"
- uses: actions/upload-artifact@v4
with:
name: wheels
name: skimage-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./dist/*.whl

build_macos_wheels:
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels
name: skimage-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./dist/*.whl

build_windows_wheels:
Expand Down Expand Up @@ -237,5 +237,5 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels
name: skimage-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./dist/*.whl

0 comments on commit e366431

Please sign in to comment.