再次初始化(修复脚本)
All checks were successful
Deploy to Remote Server / deploy (push) Successful in 4m4s

This commit is contained in:
叁玖领域 2026-01-28 18:29:59 +08:00
parent 459b1b8b89
commit 483f272132

View File

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