Skip to content

Commit a19b4ba

Browse files
committed
Ensure unique artifact names
1 parent 8ea0f06 commit a19b4ba

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,19 @@ jobs:
3636
- name: Type checking
3737
run: uv run basedpyright
3838

39-
4039
- name: Build
4140
run: uv build
4241

4342
- name: Wheel
4443
uses: actions/upload-artifact@v4
4544
with:
46-
name: "wheel"
45+
name: wheel-${{ github.job }}-${{ strategy.job-index }}
4746
path: dist/*.wheel
4847

4948
- name: Source
5049
uses: actions/upload-artifact@v4
5150
with:
52-
name: "sdist"
51+
name: sdist-${{ github.job }}-${{ strategy.job-index }}
5352
path: dist/*.tar.gz
5453

5554
- name: Coverage

0 commit comments

Comments
 (0)