We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e31a1d8 commit a6afeb5Copy full SHA for a6afeb5
.github/workflows/build-native-nuget.yml
@@ -72,7 +72,7 @@ jobs:
72
- name: Copy Native Dynamic Libs(.so/.dll/.dylib) to nuget
73
run: |
74
mkdir -p nuget
75
- if [[ "${{ matrix.rid }}" == windows* ]]; then
+ if [[ "${{ matrix.rid }}" == win* ]]; then
76
find paddle_inference_c -type f \( -iname "*.dll" \) -exec cp {} nuget/ \;
77
elif [[ "${{ matrix.rid }}" == linux* ]]; then
78
find paddle_inference_c -type f \( -iname "*.so*" \) -exec cp {} nuget/ \;
0 commit comments