Skip to content

Commit

Permalink
Write registry to a file with all tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Oct 20, 2023
1 parent 00a6728 commit 542eae6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tagging/write_tags_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ def write_tags_file(
LOGGER.info(
f"Calculated tag, tagger_name: {tagger_name} tag_value: {tag_value}"
)
tags.append(f"{owner}/{short_image_name}:{tags_prefix}-{tag_value}")
tags.append(
f"{registry}/{owner}/{short_image_name}:{tags_prefix}-{tag_value}"
)
tags_dir.mkdir(parents=True, exist_ok=True)
(tags_dir / filename).write_text("\n".join(tags))

Expand Down

0 comments on commit 542eae6

Please sign in to comment.