Skip to content

Commit 81930c3

Browse files
authored
Github Actions: Add debug files upload step to build.yml
Add step to upload debug files in build workflow
1 parent 9f347f3 commit 81930c3

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,18 @@ jobs:
130130
with:
131131
name: ${{matrix.name}}.zip
132132
path: build/rockbox.zip
133-
133+
134+
- name: Upload debug files
135+
uses: actions/upload-artifact@v4
136+
with:
137+
name: ${{matrix.name}}-debug
138+
path: |
139+
build/**/*.elf
140+
build/**/*.map
141+
build/**/*.log
142+
build/**/*.dmp
143+
build/**/*.dump
144+
134145
- name: Upload log
135146
uses: actions/upload-artifact@v4
136147
if: failure()

0 commit comments

Comments
 (0)