Skip to content

Commit

Permalink
set unique name for uploaded dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinblack committed Feb 19, 2024
1 parent 2837157 commit 0ab82a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Upload dist artifact
uses: actions/upload-artifact@v3
with:
name: dist
name: dist-${{ matrix.python-version }}
path: dist
if-no-files-found: error
- name: Upload coverage HTML artifact
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: dist
name: dist-${{ matrix.python-version }}
path: dist
- name: Install twine
run: pip install -U twine
Expand Down

0 comments on commit 0ab82a5

Please sign in to comment.