Skip to content

Commit f54e535

Browse files
authored
v2.4.3 (#760)
fix artifacts
1 parent c6801c8 commit f54e535

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build_wheels.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
uses: pypa/cibuildwheel@v2.16.5
2424
- uses: actions/upload-artifact@v4
2525
with:
26+
name: python-${{ matrix.runs-on }}
2627
path: ./wheelhouse/*.whl
2728

2829
make_sdist:
@@ -36,6 +37,7 @@ jobs:
3637
run: pipx run build --sdist
3738
- uses: actions/upload-artifact@v4
3839
with:
40+
name: python-sdist
3941
path: dist/*.tar.gz
4042

4143
pypi-publish:
@@ -51,7 +53,8 @@ jobs:
5153
steps:
5254
- uses: actions/download-artifact@v4
5355
with:
54-
name: artifact
56+
pattern: python-*
57+
merge-multiple: true
5558
path: dist
5659
- name: Publish package distributions to PyPI
5760
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/manifold.yml

+1
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ jobs:
139139
name: wasm
140140
path: bindings/wasm/examples/dist/
141141
retention-days: 90
142+
overwrite: true
142143

143144
build_windows:
144145
timeout-minutes: 30

0 commit comments

Comments
 (0)