Skip to content

Commit

Permalink
fix artifact naming
Browse files Browse the repository at this point in the history
  • Loading branch information
akaszynski committed Feb 26, 2024
1 parent 424ecc5 commit e456095
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

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

build_sdist:
Expand All @@ -52,7 +52,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: pymeshfix-sdist
name: tetgen-sdist
path: dist/*.tar.gz

upload_pypi:
Expand All @@ -62,8 +62,12 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
path: artifacts/

- name: Move wheel files to dist/
run: |
mkdir -p dist
find artifacts -name '*.whl' -exec mv {} dist/ \;
# upload to PyPI
- uses: pypa/[email protected]
Expand Down

0 comments on commit e456095

Please sign in to comment.