We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424ecc5 commit e456095Copy full SHA for e456095
.github/workflows/build-and-deploy.yml
@@ -29,7 +29,7 @@ jobs:
29
30
- uses: actions/upload-artifact@v4
31
with:
32
- name: pymeshfix-wheels-${{ matrix.os }}
+ name: tetgen-wheels-${{ matrix.os }}
33
path: ./wheelhouse/*.whl
34
35
build_sdist:
@@ -52,7 +52,7 @@ jobs:
52
53
54
55
- name: pymeshfix-sdist
+ name: tetgen-sdist
56
path: dist/*.tar.gz
57
58
upload_pypi:
@@ -62,8 +62,12 @@ jobs:
62
steps:
63
- uses: actions/download-artifact@v4
64
65
- name: artifact
66
- path: dist
+ path: artifacts/
+
67
+ - name: Move wheel files to dist/
68
+ run: |
69
+ mkdir -p dist
70
+ find artifacts -name '*.whl' -exec mv {} dist/ \;
71
72
# upload to PyPI
73
- uses: pypa/gh-action-pypi-publish@v1.8.11
0 commit comments