Skip to content

Commit 2d8f47b

Browse files
authored
Update build.yml to include env prefix in the name
Update build.yml to include env prefix in the name in order to not overwrite the producced artifacts
1 parent caf67be commit 2d8f47b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
- uses: actions/upload-artifact@v4
5555
with:
5656
path: wheelhouse/*.whl
57+
name: wheelhouse-${{ matrix.os }}
5758
overwrite: true
5859

5960
build_sdist:
@@ -106,6 +107,7 @@ jobs:
106107
if: env.skip_build != 'true'
107108
with:
108109
path: python/dist/*.tar.gz
110+
name: sdist-${{ matrix.os }}
109111
overwrite: true
110112

111113
upload_pypi:
@@ -116,7 +118,7 @@ jobs:
116118
steps:
117119
- uses: actions/[email protected]
118120
with:
119-
name: artifact
121+
name: wheelhouse-${{ matrix.os }}
120122
path: dist
121123

122124
- name: Production Release

0 commit comments

Comments
 (0)