Skip to content

Commit eb96f2b

Browse files
authored
feat: remove any elf files from being included in the programmer (#1)
1 parent 6d4ef72 commit eb96f2b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ runs:
6464
# within build/ so simply move everything within that subfolder into
6565
# build/
6666
find build -maxdepth 2 -mindepth 2 -exec mv {} build/. \;
67+
# also, we don't want any elf files if they were uploaded (which they
68+
# sometimes are for debug purposes), so delete them
69+
find build -name "*.elf" -type f -delete
6770
6871
# Build if windows
6972
- name: PyInstaller

0 commit comments

Comments
 (0)