From 1ae3ac6c9a66d7e59749aad7a24007b618222867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E4=BA=91?= Date: Fri, 16 May 2025 13:13:59 +0800 Subject: [PATCH] Debug file structure --- .github/workflows/jsonDataValidation.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/jsonDataValidation.yml b/.github/workflows/jsonDataValidation.yml index 0bf62d4b..7df7295a 100644 --- a/.github/workflows/jsonDataValidation.yml +++ b/.github/workflows/jsonDataValidation.yml @@ -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