Replies: 1 comment
-
I don't use AzDO myself, but in GitHub Actions you have to explicitly export output variables from a job in order to consume them from another job. Is something like that possible in AzDO, perhaps? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I have my azure devops pipeline like this
My
azure-pipelines-create-version-tag-template.yml
look like thisI want to access GitVersion variable
MajorMinorPatch
inside myCreateVersionTag
job.Do anyone know how I can do this or if it is even possible?
I have already tried replacing
$buildNumber
with$(GitVersion.MajorMinorPatch)
and$(GitVersion_MajorMinorPatch)
without success.I can access the variable just fine within my other template, which is where I have the
gitversion/setup@0
andgitversion/execute@0
tasks.Beta Was this translation helpful? Give feedback.
All reactions