Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexyao2015 committed Feb 24, 2022
1 parent 3b97067 commit d2bba3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}")

Expand Down

0 comments on commit d2bba3a

Please sign in to comment.