Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ steps:

# Convert the SecureString token to a plain text string for the HTTP header
# This is done just-in-time before its use.
$plainTextToken = $secureTokenObject | ConvertFrom-SecureString -AsPlainText
$plainTextToken = [System.Net.NetworkCredential]::new("", $secureTokenObject).Password
Write-Host "Token converted to plain text for API call (will not be logged)."

# Part 2: Publish Symbols using internal REST API
Expand Down
Loading