There is currently no way to non-recursively upload a directory's contents due to the default behavior of the wildcard operator in the glob library. This behavior includes descendants by default, counter to most glob library behavior (which use the globstar [**] to indicate globbing should be recursive.)
It would also enable other options to be specified which are currently not possible such as following symlinks.
What would you like to be added?
Expose GlobOptions to the action and use them when globbing files for inclusion into the artifact.
E.g.
Why is this needed?
There is currently no way to non-recursively upload a directory's contents due to the default behavior of the wildcard operator in the glob library. This behavior includes descendants by default, counter to most glob library behavior (which use the globstar [**] to indicate globbing should be recursive.)
It would also enable other options to be specified which are currently not possible such as following symlinks.