-
Notifications
You must be signed in to change notification settings - Fork 867
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure we get the actual most recent version of the branch (#2829)
* Make sure we get the actual most recent version of the branch * Update .vsts.template.windows.yml
- Loading branch information
Danny McCormick
authored
Feb 28, 2020
1 parent
204c91e
commit 2a4eeec
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,10 @@ steps: | |
- checkout: self | ||
clean: true | ||
|
||
- script: git checkout releases/$(version) | ||
- script: | | ||
git config user.email "[email protected]" | ||
git config user.name "azure-pipelines-bot" | ||
git checkout -f origin/releases/$(version) | ||
displayName: Checkout release branch | ||
condition: ne(variables['version'], '') | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,10 @@ steps: | |
- checkout: self | ||
clean: true | ||
|
||
- script: git checkout releases/$(version) | ||
- script: | | ||
git config user.email "[email protected]" | ||
git config user.name "azure-pipelines-bot" | ||
git checkout -f origin/releases/$(version) | ||
displayName: Checkout release branch | ||
condition: ne(variables['version'], '') | ||
|
||
|