From d2bba3a53e7d20b346bf6ccdd37399bf4829a2f7 Mon Sep 17 00:00:00 2001 From: Alex <33379584+alexyao2015@users.noreply.github.com> Date: Thu, 24 Feb 2022 00:10:10 -0600 Subject: [PATCH] Fix --- publish.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/publish.py b/publish.py index 2e95ab8..d565d09 100755 --- a/publish.py +++ b/publish.py @@ -216,12 +216,13 @@ def run_command(*command, ignore_error: bool = False): "docker", "manifest", "create", + "--amend", manifest, *docker_names.manifest_cmd_base, ] run_command(*cmd) - cmd = ["docker", "manifest", "push", manifest] + cmd = ["docker", "manifest", "push", "--purge", manifest] run_command(*cmd) print(f"Published {manifest}")