You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
hi I am trying to deploy artifact.zip from Bamboo deployment project to azure webapp using rest api kudo method using below script
works fine in powershell ISE, but getting error on bamboo deplyment script task, please help
$ProgressPreference = "SilentlyContinue"
#get publish profile
$publishProfile = [Xml](Get-AzureRMWebAppPublishingProfile -ResourceGroupName HOxxx -Name HOxxxxx)
#Get Username
$userName = (Select-Xml -Xml $publishProfile -Xpath "//publishData/publishProfile[contains(@profileName,'Web Deploy')]/@userName").Node.Value
#Get Password
$password = (Select-Xml -Xml $publishProfile -Xpath "//publishData/publishProfile[contains(@profileName,'Web Deploy')]/@userPWD").Node.Value
#Encode userName and pwd to base64string
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $userName, $password)))
#splat all parameters together in a param hast table
$param = @{
#deploy zip URL
Uri = “https://hoxxxxx.scm.azurewebsites.net/api/zipdeploy"
Headers = @{Authorization=("Basic {0}" -f $base64AuthInfo)}
UserAgent = "powershell/1.0"
Method = "POST"
#Deployment artifact path
Infile = "C:\Users\Sxxxxxxxx\xml-data\build-dir\HON-HON-JOB1\artifact.zip"
ContentType = "multipart/form-data"
}
#Invoke Rest call
Invoke-RestMethod @Param
error is:
The string is missing the terminator: ".
+ Invoke-RestMethod @param
ContentType = "multipart/form-data"
The hash literal was incomplete.
The hash literal was incomplete. | |
10-Jun-2021 20:17:26 | + CategoryInfo : ParserError: (:) [], ParseException |
10-Jun-2021 20:17:26 | + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString |