Skip to content

Commit b2f9602

Browse files
authored
Use new release script for Linux packages (#13705)
1 parent 9bf512f commit b2f9602

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

tools/releaseBuild/azureDevOps/templates/release-PublishPackageMsftCom.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ steps:
1717

1818
- pwsh: |
1919
$metadata = Get-Content -Path "$ENV:PIPELINE_WORKSPACE/releasePipeline/metadata/release.json" -Raw | ConvertFrom-Json
20-
Write-Verbose -Verbose "$(releaseTag) $(PackagesRepoPassword) $(AzureVersion) $($metadata.LTSRelease)"
21-
& '$(Pipeline.Workspace)/tools/packages.microsoft.com/upload.ps1' -ReleaseTag "$(releaseTag)" -Secret "$(PackagesRepoPassword)" -BlobFolderName "$(AzureVersion)" -LTS:($metadata.LTSRelease)
20+
Write-Verbose -Verbose "$(ReleaseTag) $(RepoClientCliClientID) $(RepoClientCliSecret) $(AzureVersion) $($metadata.LTSRelease)"
21+
$params = @{
22+
ReleaseTag = "$(ReleaseTag)"
23+
AadClientId = "$(RepoClientCliClientID)"
24+
AadClientSecret = "$(RepoClientCliSecret)"
25+
BlobFolderName = "$(AzureVersion)"
26+
LTS = $metadata.LTSRelease
27+
}
28+
& '$(Pipeline.Workspace)/tools/packages.microsoft.com/releaseLinuxPackages.ps1' @params
2229
displayName: Run release script

0 commit comments

Comments
 (0)