From 2c8acf7b96be064e47b3b09ed3e0d635b12c4585 Mon Sep 17 00:00:00 2001 From: imaginebeingatcomputers Date: Fri, 9 May 2025 21:40:00 -0500 Subject: [PATCH] [CI] use gzip in tar compression --- .github/workflows/Create_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Create_release.yml b/.github/workflows/Create_release.yml index 393f84408..ea2ca2b66 100644 --- a/.github/workflows/Create_release.yml +++ b/.github/workflows/Create_release.yml @@ -32,7 +32,7 @@ jobs: asset=xenia_canary_linux.tar.gz cd xenia_canary_linux chmod +x xenia_canary - tar -cvpf ../$asset * + tar -czvpf ../$asset * cd - ;; esac