Skip to content

Commit

Permalink
fixup! build(ci): more selective upload of artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
skaldarnar committed Mar 15, 2024
1 parent fbad4a9 commit 4ae377f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/linux_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: linux-windows-amd64-artifacts
path: build/natives/*/*.{so,dylib,dll}
path: |
build/natives/*/*.so
build/natives/*/*.dll
build/natives/*/*.dylib
5 changes: 4 additions & 1 deletion .github/workflows/macosx_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: macosx-aarch64-artifacts
path: build/natives/*/*.{so,dylib,dll}
path: |
build/natives/*/*.so
build/natives/*/*.dll
build/natives/*/*.dylib
5 changes: 4 additions & 1 deletion .github/workflows/macosx_amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,7 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: macosx-amd64-artifacts
path: build/natives/*/*.{so,dylib,dll}
path: |
build/natives/*/*.so
build/natives/*/*.dll
build/natives/*/*.dylib

0 comments on commit 4ae377f

Please sign in to comment.