Is your feature request related to a problem? Please describe.
We are currently using https://github.com/actions/upload-artifact defaults, that zip the files given for upload. Since we are uploading tared and gzipped files zipping seems unnecessary and is probably just adding overhead.
Describe the solution you'd like
Either use the new upload-artifact's option archive: false or avoid taring the files before invoking upload-artifact
Additional context
My attempts to use archive: false where not successful due to the file being uploaded with it's actual name and not using the one provided in name:.
Is your feature request related to a problem? Please describe.
We are currently using https://github.com/actions/upload-artifact defaults, that zip the files given for upload. Since we are uploading tared and gzipped files zipping seems unnecessary and is probably just adding overhead.
Describe the solution you'd like
Either use the new
upload-artifact's optionarchive: falseor avoid taring the files before invokingupload-artifactAdditional context
My attempts to use
archive: falsewhere not successful due to the file being uploaded with it's actual name and not using the one provided inname:.