Skip to content

Commit d1eb06f

Browse files
committed
Fix release action
1 parent 2b1ea13 commit d1eb06f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

release/action.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ runs:
2323
- name: Get artifacts
2424
uses: actions/download-artifact@v4
2525
with:
26-
name: artifacts
26+
path: artifacts
27+
merge-multiple: true
2728

2829
- name: Upload artifacts
2930
shell: bash
3031
env:
3132
GITHUB_TOKEN: ${{ inputs.token }}
32-
run: gh release upload ${{ inputs.release }} artifacts/* --clobber
33+
run: gh release upload ${{ inputs.release }} artifacts/php* --clobber

0 commit comments

Comments
 (0)