Skip to content

Commit e6b006c

Browse files
shueybubblesDavid Shiflet (from Dev Box)
andauthored
add localization build (#594)
Co-authored-by: David Shiflet (from Dev Box) <davidshi@ntdev.microsoft.com>
1 parent be3c5d4 commit e6b006c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.pipelines/LocBuild.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
trigger: none
2+
pr: none
3+
4+
pool:
5+
vmImage: 'windows-latest'
6+
7+
steps:
8+
- checkout: self
9+
persistCredentials: true # needed for the OneLocBuild task to access the repo
10+
11+
- task: OneLocBuild@2
12+
env:
13+
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
14+
inputs:
15+
isCreatePrSelected: true
16+
repoType: 'github'
17+
locProj: internal/translations/LocProject.json
18+
outDir: '$(Build.ArtifactStagingDirectory)'
19+
packageSourceAuth: patAuth
20+
dependencyPackageSource: 'https://pkgs.dev.azure.com/msdata/_packaging/SQLDS_SSMS/nuget/v3/index.json'
21+
patVariable: $(System.AccessToken)
22+
23+
- task: PublishPipelineArtifact@1
24+
inputs:
25+
targetPath: '$(Build.ArtifactStagingDirectory)'
26+
artifact: 'drop'

0 commit comments

Comments
 (0)