Update echo reference and fix publish ref
This commit is contained in:
parent
621c639128
commit
c65b02c3c8
|
@ -39,14 +39,14 @@ jobs:
|
||||||
# version
|
# version
|
||||||
Write-Host $pomXml.project.version
|
Write-Host $pomXml.project.version
|
||||||
$VERSION=$pomXml.project.version
|
$VERSION=$pomXml.project.version
|
||||||
Write-Host "##vso[task.setvariable variable=version_from_pom;]$VERSION"
|
Write-Host "##vso[task.setvariable variable=version_from_pom;isOutput=true;]$VERSION"
|
||||||
displayName: Save pom file version to local variable.
|
displayName: Save pom file version to local variable.
|
||||||
- task: Bash@3
|
- task: Bash@3
|
||||||
# Prints out the build version, for debugging purposes
|
# Prints out the build version, for debugging purposes
|
||||||
inputs:
|
inputs:
|
||||||
targetType: 'inline'
|
targetType: 'inline'
|
||||||
script: |
|
script: |
|
||||||
echo Pulled version from pom.xml => $(version_from_pom)
|
echo Pulled version from pom.xml => $(setOutput.version_from_pom)
|
||||||
displayName: Debug print release version
|
displayName: Debug print release version
|
||||||
- task: Bash@3
|
- task: Bash@3
|
||||||
# Azure pipelines cannot pass variables between pipelines, but it can pass files, so we
|
# Azure pipelines cannot pass variables between pipelines, but it can pass files, so we
|
||||||
|
@ -125,7 +125,7 @@ jobs:
|
||||||
timeoutInMinutes: 5
|
timeoutInMinutes: 5
|
||||||
dependsOn: ['buildaroni']
|
dependsOn: ['buildaroni']
|
||||||
variables:
|
variables:
|
||||||
version_from_pom: $[ dependencies.buildaroni.outputs['setVariable.version_from_pom'] ]
|
version_from_pom: $[ dependencies.get_release_version.outputs['passOutput.version_from_pom'] ]
|
||||||
steps:
|
steps:
|
||||||
# Publishes the built Validator jar to build artifacts. Primarily for testing and debugging builds.
|
# Publishes the built Validator jar to build artifacts. Primarily for testing and debugging builds.
|
||||||
- task: PublishPipelineArtifact@1
|
- task: PublishPipelineArtifact@1
|
||||||
|
|
Loading…
Reference in New Issue