Skip to content

Commit 3a97ba9

Browse files
committed
ci: Merge artifacts
- Merge the resulting artifacts - Use only the .so files from build
1 parent e3bcf9d commit 3a97ba9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/default.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,14 @@ jobs:
5252
uses: actions/upload-artifact@v4
5353
with:
5454
name: modules ${{ matrix.python-version }}
55-
path: ${{ github.workspace }}/**/*.so
55+
path: build/**/*.so
56+
merge-artifacts:
57+
needs: [test]
58+
runs-on: ubuntu-latest
59+
steps:
60+
- name: Merge Artifacts
61+
uses: actions/upload-artifact/merge@v4
62+
with:
63+
name: modules
64+
pattern: modules*
65+
delete-merged: true

0 commit comments

Comments
 (0)