Skip to content

Commit

Permalink
trying fix for updated upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
whitews committed Mar 27, 2024
1 parent b3eb06f commit 59005ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
name: python-package-distributions-${{ matrix.os }}
path: wheelhouse/*.whl
merge-multiple: true

Expand Down Expand Up @@ -62,9 +62,8 @@ jobs:
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
name: python-package-distributions-src
path: ./dist/*.tar.gz
merge-multiple: true

retrieve_build_files:
name: Retrieve build files
Expand All @@ -75,10 +74,11 @@ jobs:

steps:
- name: Download build files
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
pattern: python-package-distributions-*
merge-multiple: true

- name: List files
run: |
Expand Down

0 comments on commit 59005ea

Please sign in to comment.