We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b5354f commit 6ce22f8Copy full SHA for 6ce22f8
tools/ci_build/extract_nuget_files.ps1
@@ -45,12 +45,11 @@ Foreach-Object {
45
}
46
47
# process iOS xcframework
48
-$xcframeworks = Get-ChildItem $Env:BUILD_BINARIESDIRECTORY\nuget-artifacts -Filter onnxruntime_extensions.xcframework.*.zip
+$xcframeworks = Get-ChildItem $artifact_download_dir -Filter onnxruntime_extensions.xcframework.*.zip
49
if ($xcframeworks.Count -eq 1) {
50
$xcframework = $xcframeworks[0]
51
# remove version info from filename and use required filename format
52
$target_file = "$nuget_sources_dir\onnxruntime_extensions.xcframework.zip"
53
- New-Item -Path $target_dir -ItemType directory
54
55
Write-Output "Copy-Item $($xcframework.FullName) $target_file"
56
Copy-Item $xcframework.FullName $target_file
0 commit comments