We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3b3d8d commit 1041aa7Copy full SHA for 1041aa7
.github/actions/build/action.yml
@@ -36,9 +36,7 @@ inputs:
36
build-artifacts-glob-pattern:
37
description: 'Search pattern for build artifacts. Default: **/bin/*, **/obj/*'
38
required: false
39
- default: |
40
- '**/bin/*'
41
- '**/obj/*'
+ default:
42
build-artifacts-name:
43
description: 'Upload build artifacts, Default: build'
44
@@ -63,7 +61,8 @@ runs:
63
61
uses: actions/upload-artifact@v4
64
62
with:
65
name: ${{ inputs.build-artifacts-name }}
66
- path: ${{ inputs.build-artifacts-glob-pattern }}
+ path: |
+ ${{ inputs.build-artifacts-glob-pattern }}
67
68
69
0 commit comments