Skip to content

Commit

Permalink
ci: Merge artifacts
Browse files Browse the repository at this point in the history
- Merge the resulting artifacts
- Use only the .so files from build
  • Loading branch information
arsenetar committed May 11, 2024
1 parent e3bcf9d commit 3a97ba9
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 3a97ba9

Please sign in to comment.