From b6d9dab281c3b1ab47eb5a28c0f8165b0156702e Mon Sep 17 00:00:00 2001 From: Teo Camarasu Date: Mon, 2 Jun 2025 13:57:12 +0100 Subject: [PATCH] actions: fix tar call We were accidentally using gzip before but are file extensions call for xz --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01289c6..7537900 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,7 +134,7 @@ jobs: cabal install --install-method=copy --installdir=dist BINDIST_NAME="threadscope-ghc-${{matrix.ghc-version}}-${{ matrix.os }}${{ matrix.container && '-' }}${{matrix.container && 'alpine'}}" echo "BINDIST_NAME=$BINDIST_NAME" >> "$GITHUB_ENV" - tar -czf "$BINDIST_NAME.tar.xz" -C dist threadscope + tar -cJf "$BINDIST_NAME.tar.xz" -C dist threadscope echo bindist is "$BINDIST_NAME.tar.xz" - name: Upload bindist to artifacts