1
0

Debug cache installation failing

This commit is contained in:
Breezebuilder
2025-03-27 13:25:40 +11:00
parent 1e3ece042c
commit ee58011ee5

View File

@@ -18,6 +18,12 @@ jobs:
uses: awalsh128/cache-apt-pkgs-action@v1 uses: awalsh128/cache-apt-pkgs-action@v1
with: with:
packages: imagemagick 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 - name: Identify Changed Mods
id: find-changed-mods id: find-changed-mods
@@ -96,7 +102,7 @@ jobs:
if [ -f "$THUMBNAIL" ]; then if [ -f "$THUMBNAIL" ]; then
# Extract width and height using ImageMagick # 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) WIDTH=$(echo "$DIMENSIONS" | cut -dx -f1)
HEIGHT=$(echo "$DIMENSIONS" | cut -dx -f2) HEIGHT=$(echo "$DIMENSIONS" | cut -dx -f2)