From ec771515874fc917287ad2317df1874a79fadd3b Mon Sep 17 00:00:00 2001 From: robojerk Date: Sat, 6 Sep 2025 10:15:10 -0700 Subject: [PATCH] Add find command to search for .deb files in all subdirectories - This will help identify if .deb files are being created in unexpected locations - Useful for debugging why only source packages are found --- .forgejo/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 67102f8..1715604 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -252,6 +252,8 @@ jobs: ls -la echo "Looking for .deb files:" ls -la *.deb 2>/dev/null || echo "No .deb files found" + echo "Searching for .deb files in all subdirectories:" + find . -name "*.deb" -type f # Set Forgejo configuration FORGEJO_OWNER="particle-os"