Skip to content

Commit

Permalink
Update artifact names
Browse files Browse the repository at this point in the history
  • Loading branch information
kesmit13 committed Dec 10, 2024
1 parent 84a838f commit bf12c40
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Archive source dist and wheel
uses: actions/upload-artifact@v4
with:
name: artifacts
name: artifacts-${{ runner.os }}
path: dist
retention-days: 2

Expand All @@ -163,10 +163,22 @@ jobs:
python -m pip install --upgrade pip
pip install twine
- name: Download wheels and sdist
- name: Download Linux wheels and sdist
uses: actions/download-artifact@v4
with:
name: artifacts
name: artifacts-Linux
path: dist

- name: Download Windows wheels and sdist
uses: actions/download-artifact@v4
with:
name: artifacts-Windows
path: dist

- name: Download Mac wheels and sdist
uses: actions/download-artifact@v4
with:
name: artifacts-macOS
path: dist

- name: Publish PyPI package
Expand Down

0 comments on commit bf12c40

Please sign in to comment.