We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f03ad6 commit 209f617Copy full SHA for 209f617
.github/workflows/build_and_run_esp_usb_test_apps.yml
@@ -89,15 +89,7 @@ jobs:
89
name: usb_device_test_app_bin_${{ matrix.idf_ver }}
90
- name: Check build folder exists and list it
91
run: |
92
- DIR="build_${{ matrix.idf_target }}"
93
- echo "Workspace: $GITHUB_WORKSPACE"
94
- echo "Checking: $DIR"
95
- if [ -d "$DIR" ]; then
96
- ls -la "$DIR"
97
- else
98
- echo "ERROR: Folder '$DIR' not found"
99
- exit 1
100
- fi
+ find . -type d -name "build_${{ matrix.idf_target }}" -print -exec ls -la {} \;
101
- name: Run on target
102
103
cd ${{ env.ESP_USB_PATH }}
0 commit comments