aml-run/action.yml

25 строки
858 B
YAML
Исходник Обычный вид История

2020-03-12 20:28:05 +03:00
name: "Azure Machine Learning Run Action"
description: "Submit a run to an Azure Machine Learning Workspace with this GitHub Action"
author: "azure/gh-aml"
2020-03-12 20:28:05 +03:00
inputs:
azureCredentials:
description: "Paste output of `az ad sp create-for-rbac --name <your-sp-name> --role contributor --scopes /subscriptions/<your-subscriptionId>/resourceGroups/<your-rg> --sdk-auth` as value of secret variable: AZURE_CREDENTIALS"
required: true
parametersFile:
description: "JSON file including the parameters of the run."
required: true
default: "run.json"
outputs:
2020-03-25 19:19:09 +03:00
experimentName:
description: "Name of the experiment of the run"
2020-03-25 19:19:09 +03:00
runId:
description: "ID of the run"
2020-03-25 19:19:09 +03:00
runUrl:
description: "URL to the run in the Azure Machine Learning Studio"
branding:
icon: "chevron-up"
color: "blue"
2020-03-12 20:28:05 +03:00
runs:
using: "docker"
image: "Dockerfile"