Skip to content

Commit e456095

Browse files
committed
fix artifact naming
1 parent 424ecc5 commit e456095

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/upload-artifact@v4
3131
with:
32-
name: pymeshfix-wheels-${{ matrix.os }}
32+
name: tetgen-wheels-${{ matrix.os }}
3333
path: ./wheelhouse/*.whl
3434

3535
build_sdist:
@@ -52,7 +52,7 @@ jobs:
5252

5353
- uses: actions/upload-artifact@v4
5454
with:
55-
name: pymeshfix-sdist
55+
name: tetgen-sdist
5656
path: dist/*.tar.gz
5757

5858
upload_pypi:
@@ -62,8 +62,12 @@ jobs:
6262
steps:
6363
- uses: actions/download-artifact@v4
6464
with:
65-
name: artifact
66-
path: dist
65+
path: artifacts/
66+
67+
- name: Move wheel files to dist/
68+
run: |
69+
mkdir -p dist
70+
find artifacts -name '*.whl' -exec mv {} dist/ \;
6771
6872
# upload to PyPI
6973
- uses: pypa/gh-action-pypi-publish@v1.8.11

0 commit comments

Comments
 (0)