Skip to content

Commit 285bf56

Browse files
fix: find vs mv
1 parent 40871e8 commit 285bf56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/csharp_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ jobs:
127127
run: |
128128
mkdir -p ./unsigned-dlls
129129
find ./unsigned-dlls-framework -type f -name 'Optimizely*.dll' ! -path '*/OptimizelySDK.Tests/*' -exec mv {} ./unsigned-dlls/ \;
130-
mv ./unsigned-dlls-standard16/**/Optimizely*.dll ./unsigned-dlls/ \;
131-
mv ./unsigned-dlls-standard20/**/Optimizely*.dll ./unsigned-dlls/ \;
130+
find ./unsigned-dlls-standard16 -type f -name 'Optimizely*.dll' -exec mv {} ./unsigned-dlls/ \;
131+
find ./unsigned-dlls-standard20 -type f -name 'Optimizely*.dll' -exec mv {} ./unsigned-dlls/ \;
132132
- name: Upload combined artifacts
133133
uses: actions/upload-artifact@v4
134134
with:

0 commit comments

Comments
 (0)