Skip to content

Commit 9589bcc

Browse files
authored
[ci] fix package uploads (#209)
1 parent d27b78b commit 9589bcc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build-and-publish-wheels.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
run: pipx run build --wheel
2424
- uses: actions/upload-artifact@v4
2525
with:
26+
name: wheel
2627
path: dist/*.whl
2728

2829
build_sdist:
@@ -34,6 +35,7 @@ jobs:
3435
run: pipx run build --sdist
3536
- uses: actions/upload-artifact@v4
3637
with:
38+
name: sdist
3739
path: dist/*.tar.gz
3840

3941
upload_pypi:
@@ -44,7 +46,11 @@ jobs:
4446
steps:
4547
- uses: actions/download-artifact@v4
4648
with:
47-
name: artifact
49+
name: sdist
50+
path: dist
51+
- uses: actions/download-artifact@v4
52+
with:
53+
name: sdist
4854
path: dist
4955
- uses: pypa/[email protected]
5056
with:

0 commit comments

Comments
 (0)