Skip to content

Commit 93e0128

Browse files
committed
Unique artifact names
1 parent 478fccd commit 93e0128

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/wheels-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
run: .github/workflows/build.sh
6363
- uses: actions/upload-artifact@v4
6464
with:
65-
name: ${{ inputs.artifacts-name }}
65+
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.platform }}-${{ matrix.python }}
6666
path: wheelhouse/*.whl
6767
# Uncomment to get SSH access for testing
6868
# - name: Setup tmate session

.github/workflows/wheels-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: .github/workflows/build.sh
4646
- uses: actions/upload-artifact@v4
4747
with:
48-
name: ${{ inputs.artifacts-name }}
48+
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.platform }}-${{ matrix.python }}
4949
path: wheelhouse/*.whl
5050
# Uncomment to get SSH access for testing
5151
# - name: Setup tmate session

.github/workflows/wheels-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: .github/workflows/build.ps1
4343
- uses: actions/upload-artifact@v4
4444
with:
45-
name: ${{ inputs.artifacts-name }}
45+
name: ${{ inputs.artifacts-name }}-${{ matrix.runs-on }}-${{ matrix.platform }}-${{ matrix.python }}
4646
path: wheelhouse/*.whl
4747
# Uncomment to get SSH access for testing
4848
# - name: Setup tmate session

0 commit comments

Comments
 (0)