Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .pipelines/LocBuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
trigger: none
pr: none

pool:
vmImage: 'windows-latest'

steps:
- checkout: self
persistCredentials: true # needed for the OneLocBuild task to access the repo

- task: OneLocBuild@2
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
inputs:
isCreatePrSelected: true
repoType: 'github'
locProj: internal/translations/LocProject.json
outDir: '$(Build.ArtifactStagingDirectory)'
packageSourceAuth: patAuth
dependencyPackageSource: 'https://pkgs.dev.azure.com/msdata/_packaging/SQLDS_SSMS/nuget/v3/index.json'
patVariable: $(System.AccessToken)

- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)'
artifact: 'drop'
Loading