skip to Main Content

Azure devops pipeline variable for a task step name

Is there a variable available for an Azure devops pipeline task step name, highlighted below? pipeline image screenshot I've looked through the predefined variables at https://learn.microsoft.com/en-us/azure/devops/pipelines/build/variables?view=azure-devops&tabs=classic but none of them work/are suitable.

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
Back To Top
Search