Skip to content

Commit fa92082

Browse files
authored
Merge pull request #659 from BitMaker-hub/develop
Add debugging to prerelease download step
2 parents 94579d5 + 210275a commit fa92082

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/prerelease.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,15 @@ jobs:
6161
with:
6262
path: ${{ github.workspace }}/
6363
name: firmware-files-${{ github.sha }}
64+
- name: Debug - Check downloaded files
65+
run: |
66+
echo "=== Working directory ==="
67+
pwd
68+
ls -la
69+
echo "=== All .bin files after download ==="
70+
find . -name "*.bin" -type f
71+
echo "=== firmware directory after download ==="
72+
find firmware -type f 2>/dev/null || echo "No firmware directory found"
6473
- name: Prerelease
6574
uses: softprops/action-gh-release@v2
6675
with:

0 commit comments

Comments
 (0)