What would you like to be added?
Upload all file paths matched by a glob on their own and dont error when there is more than 1 file.
Why is this needed?
I have multiple tar.gz archives which I uploaded via path: *.tar.gz. Previously they had to be compressed so having a single zip was fine. With archive: false they can be uploaded directly without the double compression which is neat but fails because of more than one archive.
I could duplicate the action for each of the names, but then they create warnings when they don't exist. Adding if for each of them gets tedious and if-no-files-found: ignore also somewhat weird. So just upload them on their own and warn if 0 files were found seems like a good solution.
What would you like to be added?
Upload all file paths matched by a glob on their own and dont error when there is more than 1 file.
Why is this needed?
I have multiple tar.gz archives which I uploaded via path: *.tar.gz. Previously they had to be compressed so having a single zip was fine. With
archive: falsethey can be uploaded directly without the double compression which is neat but fails because of more than one archive.I could duplicate the action for each of the names, but then they create warnings when they don't exist. Adding if for each of them gets tedious and
if-no-files-found: ignorealso somewhat weird. So just upload them on their own and warn if 0 files were found seems like a good solution.