From 5c06abffe993c575baf8b3d81feb604ae7f45a22 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Mon, 13 Jul 2026 16:21:43 -0700 Subject: [PATCH] Fix malformed YAML in ci-build.yml Configure Maven settings step The first three PowerShell lines in the 'Configure Maven settings' step were at column 0 instead of being indented into the 'pwsh: |' block scalar, which broke YAML parsing. Indent them to align with the rest of the script block. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: ca8303b0-dcb7-467f-9d6b-7f68da829576 --- .azure-pipelines/ci-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/ci-build.yml b/.azure-pipelines/ci-build.yml index 1c3310ca8ae..bd306673005 100644 --- a/.azure-pipelines/ci-build.yml +++ b/.azure-pipelines/ci-build.yml @@ -77,9 +77,9 @@ extends: displayName: Import GPG signing key - pwsh: | -$props = Get-Content local.properties -Raw -$keyId = ($props | Select-String -Pattern 'signing\.keyId=([^\r\n]+)').Matches.Groups[1].Value.Trim() -$keyPassword = ($props | Select-String -Pattern 'signing\.password=([^\r\n]+)').Matches.Groups[1].Value.Trim() + $props = Get-Content local.properties -Raw + $keyId = ($props | Select-String -Pattern 'signing\.keyId=([^\r\n]+)').Matches.Groups[1].Value.Trim() + $keyPassword = ($props | Select-String -Pattern 'signing\.password=([^\r\n]+)').Matches.Groups[1].Value.Trim() $settingsXml = @"