Skip to content

Commit e4b8858

Browse files
committed
try to fix merge step
1 parent 5300672 commit e4b8858

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,15 @@ jobs:
9292
with:
9393
path: artifacts/
9494

95+
- name: Flatten artifact folder
96+
run: |
97+
mkdir merged
98+
find artifacts -type f -name "*.jar" -exec cp {} merged/ \;
99+
95100
- name: Upload merged artifact zip
96101
uses: actions/upload-artifact@v4
97102
with:
98-
path: artifacts/
103+
path: merged/
99104
name: cloudnet_version_bridge_merged
100105

101106
release:

0 commit comments

Comments
 (0)