From 455d3bc9752a70728a79d0c54bc96b4015457df6 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Fri, 6 Nov 2020 17:42:30 -0800 Subject: [PATCH] Update release pipeline to validate build artifacts hash against current source hash (#1116) * initial * update password and checkout * fix param * pull * print * cd * use build secret * older build * Use env var * use old secret * use env var * remove debug * remove unused secret --- azure-pipelines/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/release.yml b/azure-pipelines/release.yml index 5f431662..dacc82cd 100644 --- a/azure-pipelines/release.yml +++ b/azure-pipelines/release.yml @@ -50,11 +50,11 @@ stages: displayName: 'PowerShell Script' inputs: filePath: '$(System.DefaultWorkingDirectory)/CrossPlatBuildScripts/AutomatedReleases/sqltoolsserviceRelease.ps1' - arguments: '-workspace $(System.DefaultWorkingDirectory)/sqltoolsservice -minTag v3.0.0.0 -target main -tagFormat release' + arguments: '-workspace $(System.DefaultWorkingDirectory)/sqltoolsservice -minTag v3.0.0.0 -target main -tagFormat release -isPrerelease $false -artifactsBuildId $(Build.TriggeredBy.BuildId)' workingDirectory: '$(System.DefaultWorkingDirectory)/sqltoolsservice' env: GITHUB_DISTRO_MIXIN_PASSWORD: $(github-distro-mixin-password) - + ADO_CROSSPLATBUILDSCRIPTS_PASSWORD: $(ado-crossplatbuildscripts-password) trigger: none pr: none