From b05dd8f8a0349c4705c366eab8c805e902f9ae79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mauro=20Balad=C3=A9s?= Date: Mon, 16 Sep 2024 01:42:41 -0700 Subject: [PATCH] Refactor .gitattributes to enable Git LFS for object tar files --- .gitattributes | 2 +- build/winsign/sign.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitattributes b/.gitattributes index 7f4f023b4..622b6f29d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ *.patch linguist-language=C++ -.github/workflows/object/*.tar filter=lfs diff=lfs merge=lfs -text +.github/workflows/object/*.tar.gz filter=lfs diff=lfs merge=lfs -text diff --git a/build/winsign/sign.ps1 b/build/winsign/sign.ps1 index b80b6df55..62e84fa8a 100644 --- a/build/winsign/sign.ps1 +++ b/build/winsign/sign.ps1 @@ -73,7 +73,7 @@ function SignAndPackage($name) { } echo "Invoking tar for $name" - tar -cvf .\.github\workflows\object\windows-x64-signed-$name.tar -C .\windsign-temp\windows-x64-signed-$name . + tar -czvf .\.github\workflows\object\windows-x64-signed-$name.tar.gz -C .\windsign-temp\windows-x64-signed-$name . echo "Finished $name" }