fix(ci): add deeper debug for archlinux/pacman package contents

This commit is contained in:
kolaente 2026-04-13 08:21:58 +02:00
parent 5ef01965e5
commit 2a2b3c787e
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
1 changed files with 12 additions and 0 deletions

View File

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