Skip to content

Commit 0bb3334

Browse files
fix(python): action download-artifact wildcard (#541)
1 parent 12708f2 commit 0bb3334

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/action-common-python-release/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
- name: Upload wheels
7070
uses: actions/upload-artifact@v4
7171
with:
72-
name: wheels_${{ inputs.package-name }}-${{ inputs.python-version }}-${{ inputs.maturin-target }}-${{ inputs.artifact-key }}
72+
name: wheels_${{ inputs.package-name }}__${{ inputs.python-version }}-${{ inputs.maturin-target }}-${{ inputs.artifact-key }}
7373
path: dist/
7474
compression-level: 0
7575

.github/workflows/release-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ jobs:
204204
- uses: actions/download-artifact@v4
205205
with:
206206
path: wheels
207-
pattern: wheels_${{ matrix.package-name }}-*
207+
pattern: wheels_${{ matrix.package-name }}__*
208208
merge-multiple: true
209209
- name: List wheels to upload
210210
run: ls -R wheels

0 commit comments

Comments
 (0)