Azure Pipeline - 获取关联的 git TAG?
Azure Pipeline - Get associated git TAG?
在我的管道中,我可以使用变量 RELEASE.ARTIFACTS.MyPipeline_BUILDID
检索内部版本号。但是我想知道,我怎样才能得到与构建关联的标签。
它在管道内可见,如:
有没有办法在 yml 中的变量中捕获它,所以我正确地连接它,如:
您可以使用 the variable SourceBranch
:
The branch of the triggering repo the build was queued for.
When your pipeline is triggered by a tag: refs/tags/your-tag-name
因此,在版本中变量将是 RELEASE.ARTIFACTS.MyPipeline_SOURCEBRANCH
。
在我的管道中,我可以使用变量 RELEASE.ARTIFACTS.MyPipeline_BUILDID
检索内部版本号。但是我想知道,我怎样才能得到与构建关联的标签。
它在管道内可见,如:
有没有办法在 yml 中的变量中捕获它,所以我正确地连接它,如:
您可以使用 the variable SourceBranch
:
The branch of the triggering repo the build was queued for. When your pipeline is triggered by a tag:
refs/tags/your-tag-name
因此,在版本中变量将是 RELEASE.ARTIFACTS.MyPipeline_SOURCEBRANCH
。