You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-github-actions-machine-learning.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ You'll need to first define how to authenticate with Azure. You can use a [servi
52
52
53
53
You'll need to update the CLI setup file variables to match your workspace.
54
54
55
-
1. In your cloned repository, go to `azureml-examples/cli/`.
55
+
1. In your forked repository, go to `azureml-examples/cli/`.
56
56
1. Edit `setup.sh` and update these variables in the file.
57
57
58
58
|Variable | Description |
@@ -65,7 +65,7 @@ You'll need to update the CLI setup file variables to match your workspace.
65
65
66
66
You'll use a `pipeline.yml` file to deploy your Azure Machine Learning pipeline. This is a machine learning pipeline and not a DevOps pipeline. You only need to make this update if you're using a name other than `cpu-cluster` for your computer cluster name.
67
67
68
-
1. In your cloned repository, go to `azureml-examples/cli/jobs/pipelines/nyc-taxi/pipeline.yml`.
68
+
1. In your forked repository, go to `azureml-examples/cli/jobs/pipelines/nyc-taxi/pipeline.yml`.
69
69
1. Each time you see `compute: azureml:cpu-cluster`, update the value of `cpu-cluster` with your compute cluster name. For example, if your cluster is named `my-cluster`, your new value would be `azureml:my-cluster`. There are five updates.
70
70
71
71
## Step 5: Run your GitHub Actions workflow
@@ -83,7 +83,7 @@ Your workflow file is made up of a trigger section and jobs:
83
83
84
84
### Enable your workflow
85
85
86
-
1. In your cloned repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
86
+
1. In your forked repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
87
87
88
88
```yaml
89
89
name: cli-jobs-pipelines-nyc-taxi-pipeline
@@ -135,7 +135,7 @@ Your workflow file is made up of a trigger section and jobs:
135
135
136
136
### Enable your workflow
137
137
138
-
1. In your cloned repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
138
+
1. In your forked repository, open `.github/workflows/cli-jobs-pipelines-nyc-taxi-pipeline.yml` and verify that your workflow looks like this.
0 commit comments