This commit is contained in:
parent
459b1b8b89
commit
483f272132
|
|
@ -183,9 +183,9 @@ jobs:
|
|||
echo "使用保留文件: ${{ steps.project-config.outputs.use_keep_files }}"
|
||||
echo "保留文件列表: $KEEP_FILES"
|
||||
echo "=== packet 目录文件详情 ==="
|
||||
find packet/ -type f | head -20
|
||||
echo "packet 目录文件数: $(find packet/ -type f | wc -l)"
|
||||
echo "packet 目录数: $(find packet/ -type d | wc -l)"
|
||||
find packet/ -type f 2>/dev/null | head -20 || true
|
||||
echo "packet 目录文件数: $(find packet/ -type f 2>/dev/null | wc -l || echo 0)"
|
||||
echo "packet 目录数: $(find packet/ -type d 2>/dev/null | wc -l || echo 0)"
|
||||
|
||||
- name: Setup SSH
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user