Skip to content

Commit 003898e

Browse files
author
Petr Sramek
committed
fixed glob pattern
1 parent 2074ddc commit 003898e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/actions/build/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ inputs:
3434
required: false
3535
default: 'true'
3636
build-artifacts-glob-pattern:
37-
description: 'Search pattern for build artifacts. Default: {**/bin/*,**/obj/*}'
37+
description: 'Search pattern for build artifacts. Default: **/bin/*, **/obj/*'
3838
required: false
39-
default: '{**/bin/*,**/obj/*}'
39+
default: |
40+
**/bin/*
41+
**/obj/*
4042
build-artifacts-name:
4143
description: 'Upload build artifacts, Default: build'
4244
required: false

0 commit comments

Comments
 (0)