From f3d06d96b2cb91dda5bfdd73672b62b7f3bc48c7 Mon Sep 17 00:00:00 2001 From: Jamie Date: Fri, 17 Jan 2020 15:59:58 +0000 Subject: [PATCH] Update ci-build.yaml for Azure Pipelines --- ci-build.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci-build.yaml b/ci-build.yaml index 767bde8e5..d34354205 100644 --- a/ci-build.yaml +++ b/ci-build.yaml @@ -27,7 +27,8 @@ pool: vmImage: 'ubuntu-latest' steps: -- task: PowerShell@2 +- task: PowerShell@2# + displayName: 'Get Release Notes' inputs: targetType: 'inline' script: | @@ -35,11 +36,12 @@ steps: Write-Host "##vso[task.setvariable variable=ReleaseNotes;]$response" - task: PowerShell@2 + displayName: 'Set Version' inputs: targetType: 'inline' script: | dotnet tool install -g dotnet-setversion - setversion -r $(gitTag) + dotnet setversion -r $(gitTag) - task: Yarn@3 displayName: 'Install UI Dependancies'