-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
36 lines (36 loc) · 1.17 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: "Azure Machine Learning Run Action"
description: "Submit a run to an Azure Machine Learning Workspace with this GitHub Action"
author: "azure/gh-aml"
inputs:
azure_credentials:
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
armtemplate_file:
description: "JSON file of am template to deploy."
required: true
default: "deploy.json"
armtemplateparams_file:
description: "JSON file of am template to params deploy."
required: true
default: "deploy.params.json"
resource_group:
description: "resource group which is to be used"
required: true
default: "newresource_grp"
appName:
description: "resource group which is to be used"
required: true
default: "newapp"
pattoken:
description: "patotoken of repository"
required: true
default: "asdasd"
outputs:
experiment_name:
description: "Name of the experiment of the run"
branding:
icon: "chevron-up"
color: "blue"
runs:
using: "docker"
image: "Dockerfile"