From ee58011ee5cdeb07248193c90f2310728165442e Mon Sep 17 00:00:00 2001 From: Breezebuilder Date: Thu, 27 Mar 2025 13:25:40 +1100 Subject: [PATCH] Debug cache installation failing --- .github/workflows/check-mod.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 5a01cfd1..3e349a68 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -18,6 +18,12 @@ jobs: uses: awalsh128/cache-apt-pkgs-action@v1 with: packages: imagemagick + execute_install_scripts: true + + - name: DEBUG Check cache restore state + run: | + ls -gh /usr/bin + ls -gh /usr/local/bin - name: Identify Changed Mods id: find-changed-mods @@ -96,7 +102,7 @@ jobs: if [ -f "$THUMBNAIL" ]; then # Extract width and height using ImageMagick - DIMENSIONS=$(identify -format "%wx%h" "$THUMBNAIL") + DIMENSIONS=$(/usr/bin/identify -format "%wx%h" "$THUMBNAIL") WIDTH=$(echo "$DIMENSIONS" | cut -dx -f1) HEIGHT=$(echo "$DIMENSIONS" | cut -dx -f2)