-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Attempt to fix artifact upload conflict
Signed-off-by: Johannes Mueller <[email protected]>
- Loading branch information
1 parent
3992397
commit 2716bdd
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
python setup.py bdist_wheel | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: artifact-wheel | ||
name: artifact-wheel-${{ matrix.os }} | ||
path: ./dist/*.whl | ||
|
||
|
||
|
@@ -80,7 +80,12 @@ jobs: | |
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: artifact-wheel | ||
name: artifact-wheel-windows-latest | ||
path: dist | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: artifact-wheel-ubuntu-latest | ||
path: dist | ||
|
||
- uses: pypa/[email protected] | ||
|