mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
[CI] [docker] Fix docker image name regex matching (#21409)
This commit is contained in:
parent
3c68370fcf
commit
fd02065ce5
1 changed files with 1 additions and 1 deletions
|
@ -403,7 +403,7 @@ def push_and_tag_images(py_versions: List[str],
|
|||
date_tag = datetime.datetime.now().strftime("%Y-%m-%d")
|
||||
sha_tag = _get_commit_sha()
|
||||
if _release_build():
|
||||
release_name = re.search("[0-9].\.[0-9].\.[0-9].*",
|
||||
release_name = re.search("[0-9]+\.[0-9]+\.[0-9].*",
|
||||
_get_branch()).group(0)
|
||||
date_tag = release_name
|
||||
sha_tag = release_name
|
||||
|
|
Loading…
Add table
Reference in a new issue