Skip to content

Commit aa25416

Browse files
committed
Merge artifacts
1 parent 5411465 commit aa25416

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/build_with_current_nightly.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,21 @@ jobs:
6666
- name: Upload binary artifacts
6767
uses: actions/upload-artifact@v4
6868
with:
69-
name: "app_binaries_${{ matrix.device }}"
70-
path: ${{ env.ELF_NAME }}
69+
name: "app_elf_${{ matrix.device }}"
70+
path: ${{ env.ELF_NAME }}
7171
if-no-files-found: error
7272

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+
7384
#ragger_tests:
7485
# name: Run ragger tests using the reusable workflow
7586
# needs: build_with_last_nightly

0 commit comments

Comments
 (0)