ci: Merge artifacts

- Merge the resulting artifacts
- Use only the .so files from build
This commit is contained in:
Andrew Senetar 2024-05-11 01:21:58 -07:00
parent e3bcf9d686
commit 3a97ba941a
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 11 additions and 1 deletions

View File

@ -52,4 +52,14 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: modules ${{ matrix.python-version }}
path: ${{ github.workspace }}/**/*.so
path: build/**/*.so
merge-artifacts:
needs: [test]
runs-on: ubuntu-latest
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: modules
pattern: modules*
delete-merged: true