Skip to content

Commit f87185f

Browse files
committed
Combine artifacts into one folder
1 parent b354541 commit f87185f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build-native.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: Build Native
22

33
# TODO: Use matrix strategy
4-
# TODO: Combine outputs into single zip
54
# TODO: Re-enable successful jobs
65

76
on:
@@ -363,8 +362,13 @@ jobs:
363362
with:
364363
path: artifacts
365364

365+
- name: Combine into one folder
366+
run: |
367+
mkdir combined
368+
cp -r artifacts/*/* combined
369+
366370
- name: Upload artifacts
367371
uses: actions/upload-artifact@v5
368372
with:
369373
name: combined
370-
path: artifacts
374+
path: combined

0 commit comments

Comments
 (0)