Debug file structure

This commit is contained in:
秋云
2025-05-16 13:13:59 +08:00
parent cf7792279b
commit 1ae3ac6c9a

View File

@@ -49,6 +49,19 @@ jobs:
run: |
pip install packaging semver
- name: Debug file structure
run: |
echo "Current directory: $(pwd)"
echo "List files in root:"
ls -la
echo "List files in build directory (if exists):"
if [ -d "build" ]; then
ls -la build/
else
echo "build directory does not exist"
mkdir -p build
fi
- name: Get PR information
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.pr_number != '' }}
id: pr_info