File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
tools/releaseBuild/azureDevOps/templates Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments