From 4777a0f419b53e36e4960e5a8a0096eac32d6720 Mon Sep 17 00:00:00 2001 From: Sourabh Jain Date: Wed, 18 Oct 2023 21:50:44 +0530 Subject: [PATCH 1/2] remove release variable --- azure-pipelines-official.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index 81cd3d3d91..7870ac325f 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -7,7 +7,6 @@ variables: VmImage: windows-latest # https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops BuildConfiguration: Release Packaging.EnableSBOMSigning: true - ReleasePackage: true OS: 'Windows' stages: @@ -63,6 +62,6 @@ stages: parameters: BuildConfiguration: $(BuildConfiguration) VmImage: $(VmImage) - ReleasePackage: $(ReleasePackage) + ReleasePackage: true OutputPath: '$(Build.ArtifactStagingDirectory)/bin/AnyCPU/$(BuildConfiguration)/Microsoft.Azure.Cosmos' BlobVersion: $(BlobVersion) \ No newline at end of file From bfb50d6d12905a0af849522655cedda6052053ee Mon Sep 17 00:00:00 2001 From: Sourabh Jain Date: Wed, 18 Oct 2023 22:00:05 +0530 Subject: [PATCH 2/2] revert build config variable change also --- azure-pipelines-official.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index 7870ac325f..db77d4b0fd 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -60,7 +60,7 @@ stages: jobs: - template: templates/nuget-pack.yml parameters: - BuildConfiguration: $(BuildConfiguration) + BuildConfiguration: Release VmImage: $(VmImage) ReleasePackage: true OutputPath: '$(Build.ArtifactStagingDirectory)/bin/AnyCPU/$(BuildConfiguration)/Microsoft.Azure.Cosmos'