Skip to content

Commit 80aefb5

Browse files
committed
Remove overwrite from upload-artifact
It appears this is causing some wheels to not get uploaded to pypi.
1 parent 4c0ed2e commit 80aefb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
- uses: pypa/[email protected]
4343
- uses: actions/upload-artifact@v4
4444
with:
45+
name: artifact
4546
path: wheelhouse/*.whl
46-
overwrite: true
4747

4848
make_sdist:
4949
runs-on: "ubuntu-latest"
@@ -54,8 +54,8 @@ jobs:
5454
python -m build --no-isolation --sdist
5555
- uses: actions/upload-artifact@v4
5656
with:
57+
name: artifact
5758
path: dist/*.tar.gz
58-
overwrite: true
5959

6060
upload_all:
6161
needs: [build_wheels, make_sdist]

0 commit comments

Comments
 (0)