Skip to content

Commit c39ed73

Browse files
Update jenkinsfile with raw release tag name (#95)
Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
1 parent 5bf69b2 commit c39ed73

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

jenkins/release-images.jenkinsfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ standardReleasePipelineWithGenericTrigger(
2424
]
2525
}
2626
}
27-
copyDockerImage("faiss-base-${TAG}")
28-
copyDockerImage("core-${TAG}")
29-
copyDockerImage("api-${TAG}")
27+
def tagRaw = tag.replace('refs/tags/', '')
28+
copyDockerImage("faiss-base-${tagRaw}")
29+
copyDockerImage("core-${tagRaw}")
30+
copyDockerImage("api-${tagRaw}")
3031
copyDockerImage("faiss-base-latest")
3132
copyDockerImage("core-latest")
3233
copyDockerImage("api-latest")

0 commit comments

Comments
 (0)