Closed JonWillis-Tote closed 1 year ago
As an update
steps:
- codecov/upload:
file: '*'
The above, uploaded, just one file.
steps:
- codecov/upload:
file: '*,./test-results/*/coverage.cobertura.xml'
This uploaded every file in the current directory.
This looks to be user error after all. Just needed to remove the dot, from the front of the path.
steps:
- codecov/upload:
file: '/test-results/*/coverage.cobertura.xml'
This command will upload all files, rather than just the first one.
@JonWillis-Tote sorry for getting back to you so late here. Looks like the issue is resolved. If not, please feel free to reopen.
Hi,
I believe the uploader, including the Orb, supports both a CSV upload, as well as wildcards using the *.
I read the docs, and previous issues - #6 and #138 But I still cannot seem to get multiple uploads working.
I run the following command
This generates the following 2 files, one for each test assembly in the solution.
I've tried running
codecov/upload
with the file parameter set toAnd in all cases, it only uploads one file.
I even tried just using *, and it uploaded 1 file from the current directory within the container.
Have I misunderstood the wildcarding features of the uploader/orb ?
Edit -
cimg/base:2023.06