File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -265,11 +265,11 @@ extends:
265
265
pool :
266
266
vmImage : ubuntu-latest
267
267
steps :
268
- - powershell : |
268
+ - pwsh : |
269
269
$fileNames = "$(Pipeline.Workspace)/Microsoft.OpenApi.Hidi.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.YamlReader.*.nupkg", "$(Pipeline.Workspace)/Microsoft.OpenApi.Workbench.*.nupkg"
270
270
foreach($fileName in $fileNames) {
271
271
if(Test-Path $fileName) {
272
- rm $fileName -Verbose
272
+ Remove-Item $fileName -Verbose
273
273
}
274
274
}
275
275
displayName: remove other nupkgs to avoid duplication
@@ -365,7 +365,7 @@ extends:
365
365
inlineScript : |
366
366
az acr login --name $(REGISTRY)
367
367
368
- - powershell : |
368
+ - pwsh : |
369
369
$content = [XML](Get-Content $(Pipeline.Workspace)/Directory.Build.props)
370
370
Write-Host "XML loaded, finding version..."
371
371
@@ -435,7 +435,7 @@ extends:
435
435
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])
436
436
437
437
- script : |
438
- docker run --privileged --rm tonistiigi/binfmt --install all
438
+ docker run --privileged --rm msgraphprodregistry.azurecr.io/ tonistiigi/binfmt --install all
439
439
displayName: "Enable multi-platform builds"
440
440
441
441
- script : |
You can’t perform that action at this time.
0 commit comments