13,458 questions
1
vote
1
answer
42
views
Update CopyFiles task in Azure DevOps Deployment Agent
I have a server which is registered with an Azure DevOps Pipeline Environment which has come up in a security scan that a few npm packages used by CopyFiles task have vulnerabilities. The version of ...
0
votes
1
answer
35
views
How to reference other folders in Azure Devops pipelines
On Azure Devops I want to run ".ci/build.yml" pipeline which builds images in "python/version/flavor" folders.
For each version there is a dockerfile and a version.yml which ...
0
votes
0
answers
37
views
Azure Pipeline Error - Building .Net MAUI App
I am trying to create an Azure Pipeline to build the APK for .net MAUI project.
Pipeline on run failing with below error.
*
C:\hostedtoolcache\windows\dotnet\sdk\8.0.414\Sdks\Microsoft.NET.Sdk\...
0
votes
1
answer
70
views
How do I republish/update a custom Azure DevOps Pipeline Task after modifying its PowerShell module (.psm1)?
I have a custom Azure DevOps Pipeline Task that we use internally to deploy Power BI artifacts. The task is published privately to our Azure DevOps organization and appears in pipelines
This task is ...
2
votes
1
answer
54
views
Azure DevOps “File Path” PowerShell task fails with “MissingEndCurlyBrace” but script parses and runs fine locally and as inline steps
Environment
Azure DevOps Classic UI
Task: PowerShell@2 (Windows PowerShell, not pwsh)
Agent: Windows (Microsoft-hosted and self-hosted both repro)
PowerShell version: Windows PowerShell 5.1
Script ...
0
votes
0
answers
32
views
Unable to move Test Case work items between projects in ADO “Work item type Test Case cannot be moved because it is disabled, hidden or not supported”
I'm trying to move Test Case work items from one Azure DevOps project to another within the same organization.
However, when I try to move them, I get the following error:
Work item type Test Case ...
0
votes
0
answers
61
views
Tabular Editor 2 on Azure DevOps Pipelines: "Error loading model: The connection string is not valid."
Cross post here (though I think that might not be the right place to post)
I've been trying to build a tabular model ".bim" file from a folder-based tabular model (.pbip) on Azure DevOps ...
0
votes
1
answer
55
views
Az Pipelines. Use variable group for conditional Insert
I have a variable group called SharepointConnect with two variables.
SharepointConnect.Enable: 'true'
SharepointConnect.Mode: 'AzTask'
With this pipeline YML no one of the steps are being inserted ...
0
votes
1
answer
56
views
Access Azure keyvault secret from AZDO pipeline step
I have the following Azure Devops pipeline step to retrieve a secret from a KV
steps:
- task: AzureKeyVault@2
displayName: Fetch Azure Key Vault Secrets
inputs:
azureSubscription: ${{ ...
1
vote
1
answer
38
views
How to pass path with spaces in Azure Pipeline CmdLine@2 task
I have this task which tries to use the Azure Pipelines CmdLine@2 task to run the Inno installer from a command line script
- task: CmdLine@2
displayName: 'Running Inno Installer for GSB'
inputs:
...
1
vote
0
answers
70
views
SQL Server connection authentication in Azure DevOps pipeline for .NET seeding data .sln
I have a .NET application that seeds data to an Azure SQL database after deployment via Azure DevOps pipelines.
I'm struggling with authentication when using a connection string in Azure DevOps ...
1
vote
2
answers
68
views
PowerShell/ADO Pipeline: SSH Fails with key file in .ssh folder (space in path), fingerprint not accepted
I'm working on an Azure DevOps pipeline Classic UI that deploys a software package to multiple Windows devices registered in Deployment Groups.
The flow:
Copying SSH Keys:
We copy a private key file ...
0
votes
0
answers
34
views
Azure Pipelines deployment is leaving one sub folder in wwwRoot folder
I am using Azure Pipelines to deploy an ASP.NET Core application. In the release pipeline, I’ve configured the deployment settings appropriately. Below is the screen shot:
Once the release is ...
0
votes
0
answers
67
views
errorCode:3608, getting this error while trying to run my python Rest api script to push a CSV file to Microsoft Purview
af_fdp_to purview upload
Troubleshoot activity failures
I { "errorCode": "3608", "message": "Call to provided Azure function
'af_fdp_to_purview_upload' failed with ...
0
votes
1
answer
80
views
Can an installation job and a test job be in different stages in an Azure Devops Pipeline?
Is it possible to ensure that the build preparation is also passed into all subsequent stages and jobs (node environment path + node_modules), without manually running it at the start of each job?
...