winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 59b794b833509e887ebf2a89e6bc2ec30333a37c
parent e8712a37f18bfc7783d45d2f1c53043c4cf416c2
Author: Flor Chacón <14323496+florelis@users.noreply.github.com>
Date:   Mon,  3 Jun 2024 12:44:01 -0700

Fix loc pipeline service connection (#4533)

Fix for #4532. Azure Pipeline does not like service connections to be
specified with variables.
Diffstat:
Mazure-pipelines.loc.yml | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/azure-pipelines.loc.yml b/azure-pipelines.loc.yml @@ -19,7 +19,6 @@ jobs: variables: skipComponentGovernanceDetection: true tdbuildTeamId: 8343 - tdbuildServiceConnection: AppInstallerTDBuild steps: # Upload client resources - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@4 @@ -27,7 +26,7 @@ jobs: inputs: teamId: $(tdbuildTeamId) authType: FederatedIdentity - FederatedIdentityServiceConnection: $(tdbuildServiceConnection) + FederatedIdentityServiceConnection: AppInstallerTDBuild isPreview: false relativePathRoot: src\AppInstallerCLIPackage\Shared\Strings\en-us resourceFilePath: '*.resw' @@ -40,7 +39,7 @@ jobs: inputs: teamId: $(tdbuildTeamId) authType: FederatedIdentity - FederatedIdentityServiceConnection: $(tdbuildServiceConnection) + FederatedIdentityServiceConnection: AppInstallerTDBuild isPreview: false relativePathRoot: doc\admx\en-US resourceFilePath: '*.adml'