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
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:
parent
fc33022c9e
commit
ec77151587
1 changed files with 2 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue