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 2ecd7c1 commit 06d93e9Copy full SHA for 06d93e9
.github/workflows/build_iar.yml
@@ -52,7 +52,9 @@ jobs:
52
# Upload binaries for hardware test with self-hosted
53
- name: Prepare stm32l412nucleo Artifacts
54
if: contains(matrix.family, 'stm32l4')
55
- run: find examples/ -path "*stm32l412nucleo/*.elf" -exec mv {} . \;
+ working-directory: ${{github.workspace}}/cmake-build/cmake-build-stm32l412nucleo
56
+ run: |
57
+ find device/ -name "*.elf" -exec mv {} ../../ \;
58
59
- name: Upload Artifacts for stm32l412nucleo
60
if: contains(matrix.family, 'stm32l4') && github.repository_owner == 'hathach'
0 commit comments