Skip to content

Commit

Permalink
Made name for artifact unique for each python version in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Myocardinal committed Aug 30, 2024
1 parent 337a93d commit 612ab16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
name: python-package-distributions-${{ matrix.python-version }}
path: target/wheels/


Expand All @@ -65,7 +65,7 @@ jobs:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
name: python-package-distributions-${{ matrix.python-version }}
path: dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 612ab16

Please sign in to comment.