Skip to content

Commit 6c08d0d

Browse files
ramsessanchezMicrosoft Graph DevX ToolingCopilot
authored
fix: correct malformed YAML in ci-build.yml Configure Maven settings step (#1368)
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. Copilot-Session: ca8303b0-dcb7-467f-9d6b-7f68da829576 Co-authored-by: Microsoft Graph DevX Tooling <GraphTooling@service.microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 89aee43 commit 6c08d0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.azure-pipelines/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ extends:
7777
displayName: Import GPG signing key
7878
7979
- pwsh: |
80-
$props = Get-Content local.properties -Raw
81-
$keyId = ($props | Select-String -Pattern 'signing\.keyId=([^\r\n]+)').Matches.Groups[1].Value.Trim()
82-
$keyPassword = ($props | Select-String -Pattern 'signing\.password=([^\r\n]+)').Matches.Groups[1].Value.Trim()
80+
$props = Get-Content local.properties -Raw
81+
$keyId = ($props | Select-String -Pattern 'signing\.keyId=([^\r\n]+)').Matches.Groups[1].Value.Trim()
82+
$keyPassword = ($props | Select-String -Pattern 'signing\.password=([^\r\n]+)').Matches.Groups[1].Value.Trim()
8383
$settingsXml = @"
8484
<settings>
8585
<mirrors>

0 commit comments

Comments
 (0)