Skip to content

Commit

Permalink
fix: find vs mv
Browse files Browse the repository at this point in the history
  • Loading branch information
mikechu-optimizely committed Nov 7, 2024
1 parent 40871e8 commit 285bf56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/csharp_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ jobs:
run: |
mkdir -p ./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/ \;
find ./unsigned-dlls-standard16 -type f -name 'Optimizely*.dll' -exec mv {} ./unsigned-dlls/ \;
find ./unsigned-dlls-standard20 -type f -name 'Optimizely*.dll' -exec mv {} ./unsigned-dlls/ \;
- name: Upload combined artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 285bf56

Please sign in to comment.