Skip to content

Commit c460928

Browse files
committed
make artifact names unique
1 parent c5a517f commit c460928

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wheel-builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
- run: mv wheelhouse/bcrypt*.whl bcrypt-wheelhouse/
143143
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
144144
with:
145-
name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.MANYLINUX.NAME }} -${{ matrix.PYTHON.VERSION }}"
145+
name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.MANYLINUX.NAME }}-${{ matrix.PYTHON.VERSION }}${{ matrix.PYTHON.ABI_VERSION }}"
146146
path: bcrypt-wheelhouse/
147147

148148
macos:
@@ -216,7 +216,7 @@ jobs:
216216
- run: mv wheelhouse/bcrypt*.whl bcrypt-wheelhouse/
217217
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
218218
with:
219-
name: "bcrypt-${{ github.event.inputs.version }}-macOS-${{ matrix.PYTHON.ABI_VERSION }}"
219+
name: "bcrypt-${{ github.event.inputs.version }}-macOS-${{ matrix.PYTHON.VERSION }}${{ matrix.PYTHON.ABI_VERSION }}"
220220
path: bcrypt-wheelhouse/
221221

222222
windows:
@@ -269,5 +269,5 @@ jobs:
269269
- run: move wheelhouse\bcrypt*.whl bcrypt-wheelhouse\
270270
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
271271
with:
272-
name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.WINDOWS.ARCH }}-${{ matrix.PYTHON.ABI_VERSION }}"
272+
name: "bcrypt-${{ github.event.inputs.version }}-${{ matrix.WINDOWS.ARCH }}-${{ matrix.PYTHON.VERSION }}${{ matrix.PYTHON.ABI_VERSION }}"
273273
path: bcrypt-wheelhouse\

0 commit comments

Comments
 (0)