Add find command to search for .deb files in all subdirectories
All checks were successful
Build ostree packages from sid to trixie / build (push) Successful in 1m6s

- This will help identify if .deb files are being created in unexpected locations
- Useful for debugging why only source packages are found
This commit is contained in:
robojerk 2025-09-06 10:15:10 -07:00
parent fc33022c9e
commit ec77151587

View file

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