ci: windows: Compress using xz

Use XZ instead of gzip for packing. Should save about 10 MB.
This commit is contained in:
lat9nq 2021-06-09 18:37:24 -04:00
parent 6eeb532c96
commit fbad68de0f
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
. .ci/scripts/common/pre-upload.sh
REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
ARCHIVE_NAME="${REV_NAME}.tar.gz"
COMPRESSION_FLAGS="-czvf"
ARCHIVE_NAME="${REV_NAME}.tar.xz"
COMPRESSION_FLAGS="-cJvf"
if [ "${RELEASE_NAME}" = "mainline" ]; then
DIR_NAME="${REV_NAME}"