From ccec0645d66e1d08d0444ea64b51be92ebf71c8d Mon Sep 17 00:00:00 2001 From: Harry Date: Sat, 10 Aug 2019 08:34:50 +0200 Subject: [PATCH] Try to set custom build number for Azure Pipelines --- azure-pipelines.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 17f06ff18..c7e9a6624 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,6 +16,9 @@ pool: vmImage: 'ubuntu-latest' steps: + - script: echo "##vso[build.updatebuildnumber]$(version)" + displayName: 'Set Build Number' + - script: ./build.sh --BuildTarget=FullBuild --BuildVersion=$(version) displayName: 'CAKE Script'