Add debugging to prerelease download step

- Debug downloaded artifact contents in prerelease job
- Check if firmware files are correctly downloaded from build job
- Help identify path issues between build and release steps
This commit is contained in:
bitmaker
2025-09-02 13:28:26 +02:00
parent 00942251df
commit 210275a3e8

View File

@@ -61,6 +61,15 @@ jobs:
with:
path: ${{ github.workspace }}/
name: firmware-files-${{ github.sha }}
- name: Debug - Check downloaded files
run: |
echo "=== Working directory ==="
pwd
ls -la
echo "=== All .bin files after download ==="
find . -name "*.bin" -type f
echo "=== firmware directory after download ==="
find firmware -type f 2>/dev/null || echo "No firmware directory found"
- name: Prerelease
uses: softprops/action-gh-release@v2
with: