We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d943022 commit 9175a7aCopy full SHA for 9175a7a
1 file changed
.azure-pipelines/ci-build.yml
@@ -77,10 +77,9 @@ extends:
77
displayName: Import GPG signing key
78
79
- pwsh: |
80
- $props = Get-Content local.properties -Raw
81
- $keyId = ($props | Select-String -Pattern 'signing\.keyId=(.+)').Matches.Groups[1].Value
82
- $keyPassword = ($props | Select-String -Pattern 'signing\.password=(.+)').Matches.Groups[1].Value
83
-
+$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()
84
$settingsXml = @"
85
<settings>
86
<mirrors>
0 commit comments