mirror of
https://github.com/BitMaker-hub/NerdMiner_v2.git
synced 2025-09-26 18:46:16 +02:00
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:
9
.github/workflows/prerelease.yml
vendored
9
.github/workflows/prerelease.yml
vendored
@@ -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:
|
||||
|
Reference in New Issue
Block a user