mirror of https://github.com/actions/toolkit
[artifact] exempt .tar.zst files from compression (#1184)
* [artifact] exempt .tar.zst files from compression These files are already compressed with zstd - no need to attempt re-compression. * fix missing comma * fmt * Update upload-gzip.tspull/1305/head
parent
b2d865f180
commit
2c09aaef3b
|
@ -14,6 +14,9 @@ const gzipExemptFileExtensions = [
|
|||
'.tar.lz',
|
||||
'.tar.gz',
|
||||
'.tar.bz2',
|
||||
'.tar.zst',
|
||||
'.tar.zstd',
|
||||
'.tzst',
|
||||
'.7z'
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in New Issue