Skip to content

Commit

Permalink
ci: Migrate to upload/download-artifacts v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Jeretina committed Feb 13, 2025
1 parent 5ca45fd commit d57ee86
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.runs_on }}
path: dist

# ---------------------------------------------------------------------------
Expand All @@ -297,7 +297,8 @@ jobs:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels-*
merge-multiple: true
path: dist

# First delete the old prerelease. If we don't do this, we don't get things like
Expand Down Expand Up @@ -342,9 +343,10 @@ jobs:
needs: [wheels]
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels-*
merge-multiple: true
path: dist

- name: GitHub Release
Expand Down

0 comments on commit d57ee86

Please sign in to comment.