79798176

Date: 2025-10-23 20:27:48
Score: 1.5
Natty:
Report link

One of the credential types below was failing on our Azure build server but not on my local machine.

{
  "Endpoint": "https://eus.codesigning.azure.net",
  "CodeSigningAccountName": "account",
  "CertificateProfileName": "profile",
  "ExcludeCredentials": [
    "ManagedIdentityCredential",
    "EnvironmentCredential",
    "WorkloadIdentityCredential",
    "SharedTokenCacheCredential",
    "VisualStudioCredential",
    "VisualStudioCodeCredential",
    "AzurePowerShellCredential",
    "AzureDeveloperCliCredential"
  ]
}

Switched to Azure CLI credentials so we can authenticate at the beginning of the build process instead of waiting for the build to progress to signing.

Learned most of this thanks to finding this Stack Overflow answer: https://stackoverflow.com/a/78486322/4503969

Reasons:
  • Blacklisted phrase (0.5): thanks
  • Blacklisted phrase (1): stackoverflow
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: PizzaToCode