From 0eb31b6a11b2a90143749d369ec4dbaf7c342a85 Mon Sep 17 00:00:00 2001 From: "Ariel Shaqed (Scolnicov)" Date: Sun, 9 Jun 2024 17:56:18 +0300 Subject: [PATCH] Always use compressed generated.tar.gz (#7843) Compatibility tests are broken after #7840 - fixed generated.tar.gz to be compressed, but forgot to tell compatibility-tests about it. --- .github/workflows/compatibility-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compatibility-tests.yaml b/.github/workflows/compatibility-tests.yaml index 5d2c7153e3a..ad5de87ac56 100644 --- a/.github/workflows/compatibility-tests.yaml +++ b/.github/workflows/compatibility-tests.yaml @@ -40,7 +40,7 @@ jobs: make -j3 gen-api gen-code VERSION=${{ steps.version.outputs.tag }} mkdir webui/dist touch webui/dist/index.html - tar -cf /tmp/generated.tar.gz . + tar -czf /tmp/generated.tar.gz . - name: Store generated code uses: actions/upload-artifact@v3 @@ -88,7 +88,7 @@ jobs: path: /tmp/ - name: Unpack generated code - run: tar -xf /tmp/generated.tar.gz + run: tar -xzvf /tmp/generated.tar.gz - name: Extract version shell: bash