Skip to content

Commit 542eae6

Browse files
committed
Write registry to a file with all tags
1 parent 00a6728 commit 542eae6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tagging/write_tags_file.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ def write_tags_file(
3636
LOGGER.info(
3737
f"Calculated tag, tagger_name: {tagger_name} tag_value: {tag_value}"
3838
)
39-
tags.append(f"{owner}/{short_image_name}:{tags_prefix}-{tag_value}")
39+
tags.append(
40+
f"{registry}/{owner}/{short_image_name}:{tags_prefix}-{tag_value}"
41+
)
4042
tags_dir.mkdir(parents=True, exist_ok=True)
4143
(tags_dir / filename).write_text("\n".join(tags))
4244

0 commit comments

Comments
 (0)