From 3a97ba941a0e6b69f20ddba227c5909e8f44666b Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Sat, 11 May 2024 01:21:58 -0700 Subject: [PATCH] ci: Merge artifacts - Merge the resulting artifacts - Use only the .so files from build --- .github/workflows/default.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index a465dbfc..453edc2f 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -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