From ccd87f88cd5ac6cbda476ce221a184901cfd1b63 Mon Sep 17 00:00:00 2001 From: Marvin Buss Date: Wed, 25 Mar 2020 17:19:09 +0100 Subject: [PATCH] fixed caml case --- action.yml | 6 +++--- code/main.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index b9b75cf..c507f1a 100644 --- a/action.yml +++ b/action.yml @@ -10,11 +10,11 @@ inputs: required: true default: "run.json" outputs: - experiment_name: + experimentName: description: "Name of the experiment of the run" - run_id: + runId: description: "ID of the run" - run_url: + runUrl: description: "URL to the run in the Azure Machine Learning Studio" branding: icon: "chevron-up" diff --git a/code/main.py b/code/main.py index a8d8351..6be6240 100644 --- a/code/main.py +++ b/code/main.py @@ -122,9 +122,9 @@ def main(): # Create outputs print("::debug::Creating outputs") - print(f"::set-output name=experiment_name::{run.experiment.name}") - print(f"::set-output name=run_id::{run.id}") - print(f"::set-output name=run_url::{run.get_portal_url()}") + print(f"::set-output name=experimentName::{run.experiment.name}") + print(f"::set-output name=runId::{run.id}") + print(f"::set-output name=runUrl::{run.get_portal_url()}") print("::debug::Successfully finished Azure Machine Learning Train Action")