We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214721b commit dcbca87Copy full SHA for dcbca87
azurePipeline.yml
@@ -196,6 +196,13 @@ stages:
196
- script: pip install -U mypy
197
- script: mypy anonlink --ignore-missing-imports
198
displayName: mypy
199
+ - job:
200
+ displayName: "check for and tag release"
201
+ steps:
202
+ # In this step, if this build is triggered by a tag, it will add a tag 'doRelease' to the current build.
203
+ # This tag in turn is used as a trigger for the release pipeline.
204
+ - script: echo "##vso[build.addbuildtag]doRelease"
205
+ condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/')
206
207
- stage: publish
208
displayName: Publish packages to test feed
0 commit comments