Skip to content

Commit d7c9a83

Browse files
authored
fix: uplodate artifact name conflict for python (#15407)
1 parent 62ff0b9 commit d7c9a83

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/bindings.python.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: inputs.tag
3939
uses: actions/upload-artifact@v4
4040
with:
41-
name: python
41+
name: python-linux-${{ matrix.arch }}
4242
path: src/bendpy/dist/*.whl
4343

4444
macos:
@@ -60,7 +60,7 @@ jobs:
6060
if: inputs.tag
6161
uses: actions/upload-artifact@v4
6262
with:
63-
name: python
63+
name: python-macos-${{ matrix.arch }}
6464
path: src/bendpy/dist/*.whl
6565

6666
publish:
@@ -72,7 +72,8 @@ jobs:
7272
- uses: actions/checkout@v4
7373
- uses: actions/download-artifact@v4
7474
with:
75-
name: python
75+
pattern: python-*
76+
merge-multiple: true
7677
path: src/bendpy/dist
7778
- name: Publish to PyPI
7879
timeout-minutes: 10

0 commit comments

Comments
 (0)