debugging action
Some checks failed
ESP-IDF Build / build (esp32c6, latest) (push) Failing after 14s
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Failing after 14s
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Failing after 13s
ESP-IDF Build / build (esp32s3, latest) (push) Failing after 13s
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Failing after 13s
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Failing after 14s

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-12-20 14:31:13 +01:00
parent 73ed926059
commit 15fb917aaf

View File

@@ -35,6 +35,17 @@ jobs:
with:
submodules: "recursive"
- name: Debug - Check paths
run: |
echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
echo "Current directory: $(pwd)"
echo "Contents of workspace:"
ls -la
echo "Contents of firmware directory:"
ls -la firmware/ || echo "firmware directory not found"
echo "Check for CMakeLists.txt:"
test -f firmware/CMakeLists.txt && echo "CMakeLists.txt exists" || echo "CMakeLists.txt NOT found"
- name: Extract API key
env:
INSIGHTS_API_KEY: ${{ secrets.INSIGHTS_API_KEY }}