We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4ef72 commit eb96f2bCopy full SHA for eb96f2b
action.yml
@@ -64,6 +64,9 @@ runs:
64
# within build/ so simply move everything within that subfolder into
65
# build/
66
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
70
71
# Build if windows
72
- name: PyInstaller
0 commit comments