Skip to content
Snippets Groups Projects
Commit c46a84dad9bf authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

:ambulance: fix tagging with tip

parent c3a64f43f532
No related branches found
No related tags found
1 merge request!135🚑 fix tagging with tip
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
History History
======= =======
16.8.1
------
Stop tagging with tip.
16.8.0 16.8.0
------ ------
......
...@@ -215,8 +215,9 @@ ...@@ -215,8 +215,9 @@
call(["rm", dockerfile]) call(["rm", dockerfile])
# retag # retag
for tag in tags: for tag in tags:
_logger.info("Docker with tag %s", tag) if tag != "tip":
docker_client.images.get(repository).tag(repository, tag=tag) _logger.info("Docker with tag %s", tag)
docker_client.images.get(repository).tag(repository, tag=tag)
if push: if push:
_logger.info("Docker push %s", repository) _logger.info("Docker push %s", repository)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment