Questions tagged [azure-pipelines-release-task]

98 questions
0
votes
1 answer

In Azure Devops Release Pipeline, how can I get the name of the build associated with the release?

I have a release pipeline in Azure Devops. In the release pipeline I have a bash script -step that references the variable $(Release.Artifacts.MyCustomAlias.BuildNumber). In the script I echo the value of the variable. Now I created a new release…
0
votes
1 answer

Azure devops not finding TestCase during test run

I have an Azure DevOps release pipeline setup to run my tests according to this setup: https://learn.microsoft.com/en-us/azure/devops/test/run-automated-tests-from-test-hub?view=azure-devops My class file contains a unit test with 4 test cases in…
0
votes
1 answer

In Azure DevOps with a Multi Stage Pipeline, how do a manually deploy to an environment?

I currently have a separate Pipeline for a Build and Deployments. The SysTest deployment is triggered automatically. I manually deploy to QA, which I like (See below). I am trying to upgrade this process to a Multi Stage Pipeline. However, I can't…
0
votes
0 answers

Azure WebApp Deployment throws error " Exit code 3 returned from process: file name '...\node\bin\node.exe', arguments ..\azurermwebappdeployment.js"

Azure web App(Angular) Deployment pipeline(CD) throws error. Check below Log 2020-07-31T11:58:31.3433524Z ##[section]Starting: Azure App Service Deploy: WMWebUIDev 2020-07-31T11:58:31.3656726Z…
0
votes
1 answer

Azure Pipeline Release have been stuck at Downloading Artifacts

The past week our pipeline would get stuck at the Downloading Artifact. One day I would just let it go since it was late and it went back to normal. Now the issue pop up again and I can't get deployment going. Stuck for 11 minutes. Usually done less…
0
votes
1 answer

Pipeline Level Access Control for Service Connection in Azure DevOps - Classic Editor Pipelines

I have a SSH service connection created in Azure DevOps. My account has enabled 'New service connections experience' preview feature and able to see new security features for service connections. It appears that we can enable security so that…
0
votes
2 answers

Is there any way to send release pipeline data to GIT repo in devops?

Is there any task or something which will send the release pipeline data to git repo instead of sending it to any evironment?
0
votes
1 answer

Can I programmatically set an overridable default value for a variable in an Azure DevOps Release Pipeline?

I have a variable called some_var in an Azure DevOps release pipeline. I'd like to set the default at release time. But I want to set it programmatically based on the contents of a file in the artifact drop folder. But I still want the user to be…
0
votes
1 answer

Error when trying to get token using Managed Service Identity in a multi-container azure web app service

We have the following scenario: Current working setup Web API project using a single DockerFile A release pipe line with an 'Azure App Service deploy' task. Proposed new setup Web API project using multi container Docker Compose file A release…
0
votes
1 answer

Duplication of folders when committing to Git Repo from Azure DevOps Pipeline

The process outlined below is simplified to demonstrate the issue I'm facing. Process: Create ‘Solutions’ folder in artifact staging directory ($.Build.ArtifactStagingDirectory). Install required tools Export .zip package from Dynamics 365…
0
votes
0 answers

Query Azure StorageAccount blob containers through Azure DevOps custom task

We are building a custom task within a Azure DevOps extension and we would like to populate a picklist with the available blob containers for the selected storage account. Within task.json the particular datasource binding is defined as…
0
votes
1 answer

Azure DevOps Pipeline - Release API - Update Release Definition add and remove a templated stage

We have a Azure DevOps Pipeline Release Definition, and i am looking at putting in place some automation for a new 'Stage' to be created from a template when a pull request is triggered on branch x, and the stage to be removed when the branch is…
0
votes
1 answer

How to use your own data in the selection box of azure pipeline plug-in

"dataSourceBindings": [ { "target": "project", "endpointId": "$(FabrikamService)", "dataSourceName": "Fabfrikam Projects" } ] images How to use our own data for dynamically acquired data in a…
0
votes
2 answers

Releasing Code to a custom folder in Azure web apps

I have a code that I have a build pipeline for in Azure DevOps. I also have a Linux WebApp and I have created a folder in the site/wwwroot directory called as test. When I create a release pipeline I want it to released into the test folder and not…
0
votes
1 answer

How can we implement CI/CD on Azure VMSS created using custom image

I have created VMSS using custom image. I have hosted web application build in .Net MVC on VMSS. I have configured CI/CD from Azure DevOps by referring following…