From 2a2b3c787e01943fe3db4707f1a2d6c2d0fd4644 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 13 Apr 2026 08:21:58 +0200 Subject: [PATCH] fix(ci): add deeper debug for archlinux/pacman package contents --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c5e35c395..ebac0f36f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -253,6 +253,18 @@ jobs: ls -lah dist/repo-work/incoming-desktop/ || true echo "=== file types ===" file dist/repo-work/incoming/* || true + echo "=== archlinux package contents (first x86_64) ===" + pkg=$(ls dist/repo-work/incoming/*-x86_64.archlinux 2>/dev/null | head -1) + if [ -n "$pkg" ]; then + echo "Inspecting: $pkg" + zstd -d "$pkg" -o /tmp/pkg.tar 2>&1 && tar tf /tmp/pkg.tar | head -20 || true + fi + echo "=== desktop pacman package contents ===" + dpkg=$(ls dist/repo-work/incoming-desktop/*.pacman 2>/dev/null | head -1) + if [ -n "$dpkg" ]; then + echo "Inspecting: $dpkg" + xz -d -c "$dpkg" | tar tf - | head -20 || true + fi - name: Install repository tools run: |