Change variable format in bash

This commit is contained in:
Joseph Donofry 2019-05-18 11:02:58 -04:00
parent c1dc1e0f9d
commit c8f32a07ff
No known key found for this signature in database
GPG key ID: E8A1D78EF044B0CB

View file

@ -23,7 +23,9 @@ steps:
#overWrite: false # Optional
#flattenFolders: false # Optional
# Create a variable for build success
- bash: ls ${BUILD.ARTIFACTSTAGINGDIRECTORY}
- bash: ls ${ARTIFACT_STAGING_DIRECTORY}
env:
ARTIFACT_STAGING_DIRECTORY: $(Build.ArtifactStagingDirectory))
- pwsh: if( (Get-ChildItem $(Build.ArtifactStagingDirectory) | Measure-Object).Count -eq 0) { echo '##vso[task.setvariable variable=buildSuccess]false' } else { echo '##vso[task.setvariable variable=buildSuccess]true' }
# delete the release if it already exists to avoid an error
- task: GitHubRelease@0