Skip to content

Commit

Permalink
ci: filter off OptimizelySDK.Test when combining
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechu-optimizely committed Nov 7, 2024
1 parent 89ad96f commit 40871e8
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/csharp_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ jobs:
with:
name: unsigned-dlls-framework
if-no-files-found: error
path: |
$(find . -path './**/bin/Release/**/Optimizely*.dll' ! -path './**/OptimizelySDK.Tests/**')
path: ./**/bin/Release/**/Optimizely*.dll

buildStandard16:
name: Build .NET 1.6 version
Expand Down Expand Up @@ -127,9 +126,9 @@ jobs:
- name: Combine artifacts
run: |
mkdir -p ./unsigned-dlls
mv ./unsigned-dlls-framework/**/Optimizely*.dll ./unsigned-dlls/
mv ./unsigned-dlls-standard16/**/Optimizely*.dll ./unsigned-dlls/
mv ./unsigned-dlls-standard20/**/Optimizely*.dll ./unsigned-dlls/
find ./unsigned-dlls-framework -type f -name 'Optimizely*.dll' ! -path '*/OptimizelySDK.Tests/*' -exec mv {} ./unsigned-dlls/ \;
mv ./unsigned-dlls-standard16/**/Optimizely*.dll ./unsigned-dlls/ \;
mv ./unsigned-dlls-standard20/**/Optimizely*.dll ./unsigned-dlls/ \;
- name: Upload combined artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 40871e8

Please sign in to comment.