Skip to content

Commit 8ee763e

Browse files
committed
Update readme
1 parent 65cd9a4 commit 8ee763e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ Github Action to register an Azure Machine Learning Model in a workspace.
55
Features:
66

77
* Register a model in an Azure Machine Learning workspace
8-
* Move a model between registries
8+
* Checks if the model already exists in the workspace
9+
* Checks if the resource group and workspace exist
910

1011
For other Azure Machine Learning actions check out:
1112

@@ -33,15 +34,14 @@ jobs:
3334
with:
3435
creds: ${{ secrets.AZURE_CREDENTIALS }}
3536

36-
- name: Register model in registry
37-
uses: coding-kitties/register-azure-machine-learning-model@v0.1.0
37+
- name: Register model in Azure Machine Learning workspace
38+
uses: coding-kitties/register-azure-machine-learning-model-to-workspace@v0.1.1
3839
with:
39-
model_name: 'model-name'
40-
model_version: '1'
41-
source_registry_name: 'playground-registry'
42-
source_registry_resource_group: 'playground-registry-resource-group'
43-
destination_registry_name: 'dev-registry'
44-
destination_registry_resource_group: 'dev-resource-group'
40+
model_name: '<model-name>'
41+
model_version: '<model-version>'
42+
resource_group: '<resource-group>'
43+
workspace_name: '<workspace-name>'
44+
model_path: '<path-to-model>'
4545
```
4646
4747
## Example deployment of an Azure Machine Learning Workflow with blue/green deployments

0 commit comments

Comments
 (0)