Skip to content

Commit

Permalink
Make artifact names unique.
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc committed Sep 4, 2024
1 parent ede7e01 commit 5027d7c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-sdist-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
- name: Store wheel as artifact
uses: actions/upload-artifact@v4
with:
name: dist
name: dist-wheels
path: dist/*.whl

build_sdist:
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
- name: Store sdist as artifact
uses: actions/upload-artifact@v4
with:
name: dist
name: dist-sdist
path: dist/*.tar.gz

upload_artifacts:
Expand All @@ -198,8 +198,9 @@ jobs:
- name: Download artifacts produced during the build_wheels and build_sdist jobs
uses: actions/download-artifact@v4
with:
name: dist
name: dist-*
path: dist/
merge-multiple: true

- name: Display structure of downloaded files
run: ls -R
Expand Down

0 comments on commit 5027d7c

Please sign in to comment.