Visual Studio Team Services and Team Foundation Server Release Management.
Questions tagged [azure-pipelines-release-pipeline]
1942 questions
0
votes
0 answers
How to use Azure Pipelines to run command on Remote Server but not in Azure Pipelines?
I would like to use Azure Pipelines to call Open XLTerminal in Remote Ubuntu Server (called ServerYYY).
a) In Releases in Azure Pipelines, I tried to add "Deployment Group Job" task (which I followed this document to perform)
Create Bash Task with…

DaiKeung
- 1,077
- 1
- 19
- 38
0
votes
2 answers
Display Azure DevOps pipeline variables inside my code
Before, I was displaying my product version with :
@string.Format("v{0}", ViewContext.Controller.GetType().Assembly.GetName().Version)
where the version was stored in the AssemblyInfo.cs like so :
[assembly: AssemblyVersion("2.2.1.0")]
and the…

madhatterx
- 53
- 8
0
votes
2 answers
Publish only changes from stored procedures and views from one database to another in Azure Repos
I have created a database project in visual studio that includes schemas, tables, stored procedures and tables. I've added them to source control in Azure Repos. I want to publish only the stored procedures and views to another database(they have…

Sindu_
- 1,347
- 8
- 27
- 67
0
votes
1 answer
How to create a ServiceNow Change Request as a step in TFS 2018 Release
I am trying to create a ServiceNow Change Request as one of the steps in my Release. I was trying to Agentless Phase step (Invoke Rest API: Post).
I found one article online that suggested to create a Generic Endpoint for ServiceNow. I tried that in…

Pat Delaney
- 117
- 10
0
votes
1 answer
Azure Devops Passing parameters to command line script
I would like to pass a username of a person who initiated deploy in Release pipeline in command line script task.
I have tried:
echo $(username)
But $(username) gives me an account of agent service, not the user who initiated deploy.

Boris Makovecki
- 63
- 1
- 2
- 4
0
votes
1 answer
Release pipeline design idea
I want to build a release pipeline having two stages Stage1 and stage2. In each stages I need to deploy multiple customers. I am getting the customer information from the JSON file using PowerShell script. Below are some of the questions that I need…

mystack
- 4,910
- 10
- 44
- 75
0
votes
1 answer
Error: "Version could not be created from build. Please make sure that your .ipa file has the correct format"
Everything works fine for the Android Release of the Application. I'm developing the app with Flutter using VS code, then I'm building it with Azure DevOps and finally I'm publishing it to the AppCenter.
In contrast to Android, IOS does not create…

Lilo
- 1
- 1
0
votes
0 answers
Best way to get input in Azure devops to create a json file
What is the best way in Azure devops to accept multiple input and create a json file out of it
My requirement is that i need to lis the env and ask user to enter the coresponding target version . Is there any possible way in Azure devops to acieve…

mystack
- 4,910
- 10
- 44
- 75
0
votes
1 answer
Couldn't build release version of iOS project with hosted mac agent Azure pipeline
Getting these two errors when I try to build the iOS project with hosted mac agent.
lipo : error : unable to find utility "lipo", not a developer tool or in PATH [/Users/runner/runners/2.158.0/work/1/s/src/LOT/iOS/LOT.iOS.csproj]
MTOUCH : error…

Sankarann
- 2,625
- 4
- 22
- 59
0
votes
1 answer
Not Getting Azure DevOps Code Coverage Information From Azure DevOps Services REST APIs
I have been able to generate Angular 4 code coverage in azure devops build pipeline.
Screenshot Of Generated Code Coverage
Screenshot Of Code Coverage Summary
But now I want to get the build coverage details from Azure DevOps Services REST APIs.
I…

Shubho
- 135
- 1
- 8
0
votes
1 answer
AzureDevOp convey information from one stage to another using scripts
I have a pipeline defined of two steps:
one building a combined helm chart from two separate artifacts
two deploying this chart to a cluster
Both stages first load a secret and then run a bash script to do the work, as shown in the following…

lony
- 6,733
- 11
- 60
- 92
0
votes
1 answer
Unable to use Custom Pipeline Variable for Release Name
I've created a powershell script that updates a Pipeline Variable during a Release Pipeline. It takes the custom variable and updates it with a new version using semantic versioning with every run.
I've tried to add this custom variable as the…

Trevor
- 15
- 7
0
votes
1 answer
Deployment Agent is single threaded but we need multiple?
Deployment Agent seems to be single threaded but we need multiple
We have 2 Release Pipelines and Stages in our Azure Devops Release Pipeline that share the same "Deployment Group" which has a single agent on a single…

Brett
- 719
- 1
- 7
- 19
0
votes
1 answer
using strategy does not work for AzureRmWebAppDeployment@4
I started using the strategy runonce yaml schema so i can add environment tag to my relase and add approval steps. https://learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=azure-devops&tabs=schema
BUT doing so…

Thinkara Kara
- 227
- 3
- 9
0
votes
1 answer
VSTS pipeline similar to Jenkin's buildwithParameter?
We have a Jenkins build server, which you can do "build with parameter". This is nice for the QA team, as this allows them to pick a list of features to test.
Now the business is moving everything to azure, and I am trying to move to VSTS pipeline.…

daxu
- 3,514
- 5
- 38
- 76