We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b982485 commit dcf8a6fCopy full SHA for dcf8a6f
build/azure-pipelines/package-common-create.yml
@@ -19,6 +19,7 @@ steps:
19
targetType: 'inline'
20
script: |
21
$VERSION_TAG = git describe --tags (git rev-list --tags --max-count=1)
22
+ $VERSION_TAG = $VERSION_TAG.substring(1) # Trim initial 'v'
23
Write-Host("##vso[task.setvariable variable=VERSION_TAG]$VERSION_TAG")
24
Write-Host($VERSION_TAG)
25
- task: CmdLine@2
build/azure-pipelines/package-common-test.yml
@@ -16,6 +16,7 @@ steps:
16
17
18
0 commit comments