skip to Main Content

Unable to download secure files from azure devops

Good morning, I have problems checking out a secure file during the build process in azure devops 2019. My task is defined as: - task: DownloadSecureFile@1 inputs: secureFile: 'oimPictureEditor_test' displayName: 'download configuration' but it fails with: 2022-12-30T10:10:27.9053899Z ##[section]Starten: download configuration…

VIEW QUESTION

Unable to get the value of variable inside a variable in azure pipelines – Ubuntu

I'm trying to use variables inside variables in azure pipelines. Below is an example of the bash script: #!/bin/bash customer=google environment=preprod android_google_preprod_account_activation_url=preprod.google.com echo "Customer is $customer" echo "Environment is $environment" var1=android_${customer}_${environment}_account_activation_url echo "variable is $var1" echo "original value is ${!var1}"…

VIEW QUESTION

Azure release pipelines variable in variable

I am trying to build a pipeline which is capable of deploying environments for multiple customers. I have the following structure Azure Vault with secrets names in this form: customerName-customerEnvironmentType-secretName release pipeline with these steps. It is a multi configuration…

VIEW QUESTION

Creating Azure subscription with Variable

I have a pipeline that is supposed to create a Azure subscription, to provide values I have set up a variable calld serviceConnection: jobs: - job: Variables displayName: 'Variables' steps: - checkout: self - task: Bash@3 displayName: 'Get Json values…

VIEW QUESTION

Unable to build the ASP.Net Core 7 in azure devops pipeline (CI)

Unable to build the ASP.Net Core 7 in azure devops pipeline (CI), Using Classic pipeline and ASP.net core template Error message : ##[error]C:Program Filesdotnetsdk6.0.203SdksMicrosoft.NET.SdktargetsMicrosoft.NET.TargetFrameworkInference.targets(144,5) : Error NETSDK1045: The current .NET SDK does not support targeting .NET 7.0. Either target .NET…

VIEW QUESTION
Back To Top
Search