From 2411ec039d1ae00dfb1858c811fc4a499598b414 Mon Sep 17 00:00:00 2001 From: Bastien Abadie Date: Thu, 19 Dec 2019 11:09:30 +0100 Subject: [PATCH] Fix named artifact download in heroku push. --- taskboot/push.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/taskboot/push.py b/taskboot/push.py index 8763584..15eb7c3 100644 --- a/taskboot/push.py +++ b/taskboot/push.py @@ -84,7 +84,9 @@ def heroku_release(target, args): updates_payload = [] - for heroku_dyno_name, _, artifact_path in load_named_artifacts(args.artifacts): + for heroku_dyno_name, _, artifact_path in load_named_artifacts( + config, args.task_id, args.artifacts + ): # Push the Docker image custom_tag_name = f"{HEROKU_REGISTRY}/{args.heroku_app}/{heroku_dyno_name}"