Skip to content

Commit

Permalink
ci: filter off OptimizelySDK.Tests dlls + ls on combineArtifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechu-optimizely committed Nov 7, 2024
1 parent 9f9051f commit 89ad96f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/csharp_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ jobs:
with:
name: unsigned-dlls-framework
if-no-files-found: error
path: ./**/bin/Release/**/Optimizely*.dll
path: |
$(find . -path './**/bin/Release/**/Optimizely*.dll' ! -path './**/OptimizelySDK.Tests/**')
buildStandard16:
name: Build .NET 1.6 version
Expand Down Expand Up @@ -121,6 +122,8 @@ jobs:
with:
name: unsigned-dlls-standard20
path: ./unsigned-dlls-standard20
- name: List all downloaded artifacts
run: ls -R ./
- name: Combine artifacts
run: |
mkdir -p ./unsigned-dlls
Expand Down

0 comments on commit 89ad96f

Please sign in to comment.