Refactor unpacking of Windows build tar files

This commit is contained in:
Mauro Baladés
2024-09-16 17:03:02 +03:00
parent f1a18bb112
commit f790e13f14
3 changed files with 6 additions and 5 deletions

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9b3bab7e16a05a9dd69d14e22eac7e00bcb5b53c39c2c8758a26986aa7595a3
size 237744323
oid sha256:6eae13d446c4326d555f9470e7773b367e7d9e2f3ef2b051a8fbd64bf7ebffaf
size 237737135

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:351a4905932ba59ca3c88fd43d7055433e511a95a6f97eae8f8f80d984b48970
size 237645742
oid sha256:474d09353b1ef5e8f16d4785d8084b264630a7a8072a6cd4532904f923fff7ba
size 237641008

View File

@@ -73,7 +73,8 @@ function SignAndPackage($name) {
}
echo "Invoking tar for $name"
tar -czvf .\.github\workflows\object\windows-x64-signed-$name.tar.gz -C .\windsign-temp\windows-x64-signed-$name .
# note: We need to sign it into a parent folder, called 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"
}