Skip to content

Commit aa33d89

Browse files
committed
fix: prevent artifact upload conflicts in ci-check by adding versioned names
1 parent ea99d9e commit aa33d89

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Upload wheels
4444
uses: actions/upload-artifact@v4
4545
with:
46-
name: wheels-linux
46+
name: wheels-linux-${{ matrix.python-version }}
4747
path: dist
4848

4949
# ----------------------------------------
@@ -67,7 +67,7 @@ jobs:
6767
- name: Upload wheels
6868
uses: actions/upload-artifact@v4
6969
with:
70-
name: wheels-windows
70+
name: wheels-windows-${{ matrix.python-version }}
7171
path: dist
7272

7373
# ----------------------------------------
@@ -91,7 +91,7 @@ jobs:
9191
- name: Upload wheels
9292
uses: actions/upload-artifact@v4
9393
with:
94-
name: wheels-macos
94+
name: wheels-macos-${{ matrix.python-version }}
9595
path: dist
9696

9797
# ----------------------------------------

0 commit comments

Comments
 (0)