Skip to content

Commit eae305d

Browse files
committed
azure-pipelines: use valid build number format
The ':' in the build number is not valid - remove it. Signed-off-by: Matthew John Cheetham <mjcheetham@outlook.com>
1 parent 5f9abae commit eae305d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.azure-pipelines/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ extends:
109109
echo "##vso[task.setvariable variable=tag_name;isOutput=true;isReadOnly=true]$tag_name"
110110
echo "##vso[task.setvariable variable=tag_sha;isOutput=true;isReadOnly=true]$tag_sha"
111111
rev=$(echo "$(Build.BuildNumber)" | grep -oE '[0-9]+$')
112-
echo "##vso[build.updatebuildnumber]${tag_name} (rev:${rev})"
112+
echo "##vso[build.updatebuildnumber]${tag_name} (rev ${rev})"
113113
114114
- stage: build
115115
displayName: 'Build'

0 commit comments

Comments
 (0)