Skip to content

Commit

Permalink
Fix docker pipeline by removing trailing whitespace (microsoft#264)
Browse files Browse the repository at this point in the history
The docker pipeline fails to tag because the trailing whitespace gets included in the tag name.
  • Loading branch information
tcare authored Apr 13, 2020
1 parent d0e91cf commit 996e0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion environment_setup/docker-image-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ steps:
tags: |
${{format('build-{0}', '$(Build.BuildNumber)')}}
${{format('amlsdk-{0}', '$(amlsdkversion)')}}
${{format('release-{0}', '$(githubrelease)')}}
${{format('release-{0}', '$(githubrelease)')}}
latest
buildContext: '$(Build.SourcesDirectory)'
dockerFile: '$(Build.SourcesDirectory)/environment_setup/Dockerfile'

0 comments on commit 996e0a6

Please sign in to comment.