Skip to content

Commit e71a523

Browse files
committed
fix download-artifact inputs
1 parent 06ffd21 commit e71a523

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish-container-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
pattern: linux-*
3737
path: ./downloads
38-
merge_multiple: false # some artifacts have the same name and so can not be aggregated in a single directory
38+
merge-multiple: false # some artifacts have the same name and so can not be aggregated in a single directory
3939

4040
- name: Unpack CMake Artifacts
4141
shell: bash

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/download-artifact@v5
2222
with:
2323
path: ${{ runner.workspace }}/downloads
24-
merge_multiple: false # some artifacts have the same name and so can not be aggregated in a single directory
24+
merge-multiple: false # some artifacts have the same name and so can not be aggregated in a single directory
2525

2626
- name: List Release Artifacts
2727
run: ls -horRAS ${{runner.workspace}}/downloads/

0 commit comments

Comments
 (0)