diff --git a/taskcluster/taskgraph/decision.py b/taskcluster/taskgraph/decision.py index 24ff46099ccf..a7deb93f39e0 100644 --- a/taskcluster/taskgraph/decision.py +++ b/taskcluster/taskgraph/decision.py @@ -169,8 +169,9 @@ def taskgraph_decision(options, parameters=None): full_task_json = tgg.full_task_graph.to_json() write_artifact('full-task-graph.json', full_task_json) - # write out the public/runnable-jobs.json.gz file + # write out the public/runnable-jobs.json file write_artifact('runnable-jobs.json.gz', full_task_graph_to_runnable_jobs(full_task_json)) + write_artifact('runnable-jobs.json', full_task_graph_to_runnable_jobs(full_task_json)) # this is just a test to check whether the from_json() function is working _, _ = TaskGraph.from_json(full_task_json)