Skip to content

Commit

Permalink
Fix loc pipeline service connection (#4533)
Browse files Browse the repository at this point in the history
Fix for #4532. Azure Pipeline does not like service connections to be
specified with variables.
  • Loading branch information
florelis authored Jun 3, 2024
1 parent e8712a3 commit 59b794b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions azure-pipelines.loc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ jobs:
variables:
skipComponentGovernanceDetection: true
tdbuildTeamId: 8343
tdbuildServiceConnection: AppInstallerTDBuild
steps:
# Upload client resources
- task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@4
displayName: Send resources to Touchdown Build
inputs:
teamId: $(tdbuildTeamId)
authType: FederatedIdentity
FederatedIdentityServiceConnection: $(tdbuildServiceConnection)
FederatedIdentityServiceConnection: AppInstallerTDBuild
isPreview: false
relativePathRoot: src\AppInstallerCLIPackage\Shared\Strings\en-us
resourceFilePath: '*.resw'
Expand All @@ -40,7 +39,7 @@ jobs:
inputs:
teamId: $(tdbuildTeamId)
authType: FederatedIdentity
FederatedIdentityServiceConnection: $(tdbuildServiceConnection)
FederatedIdentityServiceConnection: AppInstallerTDBuild
isPreview: false
relativePathRoot: doc\admx\en-US
resourceFilePath: '*.adml'
Expand Down

0 comments on commit 59b794b

Please sign in to comment.