Skip to content

Commit 996e0a6

Browse files
authored
Fix docker pipeline by removing trailing whitespace (#264)
The docker pipeline fails to tag because the trailing whitespace gets included in the tag name.
1 parent d0e91cf commit 996e0a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

environment_setup/docker-image-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ steps:
2828
tags: |
2929
${{format('build-{0}', '$(Build.BuildNumber)')}}
3030
${{format('amlsdk-{0}', '$(amlsdkversion)')}}
31-
${{format('release-{0}', '$(githubrelease)')}}
31+
${{format('release-{0}', '$(githubrelease)')}}
3232
latest
3333
buildContext: '$(Build.SourcesDirectory)'
3434
dockerFile: '$(Build.SourcesDirectory)/environment_setup/Dockerfile'

0 commit comments

Comments
 (0)