ci: fix release sentry step (cherry-pick #8540) (#8541)

Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
fix release sentry step (#8540)
This commit is contained in:
gcp-cherry-pick-bot[bot]
2024-02-15 21:11:15 +00:00
committed by GitHub
parent 8ff27f69e1
commit 061d4bc758
2 changed files with 6 additions and 4 deletions

View File

@ -68,10 +68,12 @@ runs:
for name in image_names:
image_tags += [
f"{name}:{version}",
f"{name}:{version_family}",
]
if not prerelease:
image_tags += [f"{name}:latest"]
image_tags += [
f"{name}:latest",
f"{name}:{version_family}",
]
else:
suffix = ""
if image_arch and image_arch != "amd64":