This commit is contained in:
mauro-balades
2024-09-16 07:51:45 +02:00
5 changed files with 11 additions and 5 deletions

2
.gitattributes vendored
View File

@@ -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

View File

@@ -329,10 +329,10 @@ jobs:
- name: List
run: find .
- name: Unpack windows build
- name: Unpack windows build (.tar.gz)
run: |
tar -xvf .github/workflows/object/windows-x64-signed-generic.tar.gz -C windows-x64-signed-generic
tar -xvf .github/workflows/object/windows-x64-signed-specific.tar.gz -C windows-x64-signed-specific
tar -xvf .github/workflows/object/windows-x64-signed-generic.tar.gz -C .
tar -xvf .github/workflows/object/windows-x64-signed-specific.tar.gz -C .
- name: Clone updates repo
uses: actions/checkout@v4

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:805f5d9f727596007dc64057d456e87a2648dff596230ca12af6cf48860843fa
size 237797081

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51d3bb5508804e438755658157f0f18331675b418bdb11db485f938a4fc5fd8a
size 237484305

View File

@@ -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"
}