We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da3c5b commit 351c590Copy full SHA for 351c590
1 file changed
CI/AZ_MainPipeline.yml
@@ -11,7 +11,7 @@ variables:
11
- name: ArtifactBranchName
12
value: tSQLt$(Build.SourceVersion)
13
- name: GitFetchDepth
14
- value: 22
+ value: 11
15
16
resources:
17
repositories:
@@ -304,7 +304,8 @@ stages:
304
git status
305
git remote show origin
306
307
- git switch "$(ArtifactBranchName)"
+ git fetch --depth=11 origin
308
+ git checkout "$(ArtifactBranchName)"
309
$CheckIfGitOk.invoke($?);
310
311
0 commit comments