Skip to content

Commit 1041aa7

Browse files
author
Petr Sramek
committed
what
1 parent d3b3d8d commit 1041aa7

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/actions/build/action.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ inputs:
3636
build-artifacts-glob-pattern:
3737
description: 'Search pattern for build artifacts. Default: **/bin/*, **/obj/*'
3838
required: false
39-
default: |
40-
'**/bin/*'
41-
'**/obj/*'
39+
default:
4240
build-artifacts-name:
4341
description: 'Upload build artifacts, Default: build'
4442
required: false
@@ -63,7 +61,8 @@ runs:
6361
uses: actions/upload-artifact@v4
6462
with:
6563
name: ${{ inputs.build-artifacts-name }}
66-
path: ${{ inputs.build-artifacts-glob-pattern }}
64+
path: |
65+
${{ inputs.build-artifacts-glob-pattern }}
6766
6867
6968

0 commit comments

Comments
 (0)