Skip to content

Commit cd53a52

Browse files
authored
Merge pull request #178 from tobiasdiez/patch-1
Fix CI error due to duplicate artifact name
2 parents ab770a8 + a8b735f commit cd53a52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
113113
- uses: actions/upload-artifact@v4
114114
with:
115-
name: wheels-${{ matrix.os }}
115+
name: wheels-${{ matrix.os }}-${{ matrix.arch }}
116116
path: ./wheelhouse/*.whl
117117

118118
pypi-publish:
@@ -127,7 +127,7 @@ jobs:
127127

128128
- uses: actions/download-artifact@v4
129129
with:
130-
name: wheels
130+
pattern: wheels-*
131131
path: wheelhouse
132132

133133
- name: Publish package distributions to PyPI

0 commit comments

Comments
 (0)