1
0
Fork 0

[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.ts
pull/1305/head
Luca Casonato 2023-01-05 22:00:03 +01:00 committed by GitHub
parent b2d865f180
commit 2c09aaef3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,9 @@ const gzipExemptFileExtensions = [
'.tar.lz', '.tar.lz',
'.tar.gz', '.tar.gz',
'.tar.bz2', '.tar.bz2',
'.tar.zst',
'.tar.zstd',
'.tzst',
'.7z' '.7z'
] ]