Skip to content

Commit

Permalink
update localize pipeline (#3637)
Browse files Browse the repository at this point in the history
Co-authored-by: Ilya Kuleshov <v-ikuleshov@microsoft.com>
  • Loading branch information
kuleshovilya and kuleshovilya authored Nov 30, 2021
1 parent 2041bbd commit a2dabe0
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Localize/localize-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,16 @@ stages:
git checkout -b $updateBranch
Remove-Item -Recurse -Force Localize
if (Test-Path -Path Localize) {
Remove-Item -Recurse -Force Localize
}
if (Test-Path -Path OneLocBuild) {
Remove-Item -Recurse -Force OneLocBuild
}
git add -A
git commit -m "Removing Localize folder"
git commit -m "Removing Localize and OneLocBuild folder"
git push origin $updateBranch
displayName: Create and push localization update branch
condition: and(succeeded(), or(and(eq(variables['SHOULDCREATEPR'], 'True'), eq(variables['build.reason'], 'Schedule')), eq(variables['build.reason'], 'Manual')))
Expand Down

0 comments on commit a2dabe0

Please sign in to comment.