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 5411465 commit aa25416Copy full SHA for aa25416
.github/workflows/build_with_current_nightly.yml
@@ -66,10 +66,21 @@ jobs:
66
- name: Upload binary artifacts
67
uses: actions/upload-artifact@v4
68
with:
69
- name: "app_binaries_${{ matrix.device }}"
70
- path: ${{ env.ELF_NAME }}
+ name: "app_elf_${{ matrix.device }}"
+ path: ${{ env.ELF_NAME }}
71
if-no-files-found: error
72
73
+ merge_artifacts:
74
+ name: Merge build artifacts
75
+ needs: build_with_last_nightly
76
+ runs-on: ubuntu-22.04
77
+ steps:
78
+ - uses: actions/upload-artifact/merge@v4
79
+ with:
80
+ name: app_elf_artifacts
81
+ pattern: app_elf_*
82
+ delete-merged: true
83
+
84
#ragger_tests:
85
# name: Run ragger tests using the reusable workflow
86
# needs: build_with_last_nightly
0 commit comments