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: ACTIONS.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,12 @@ This template repository contains a sample application and sample GitHub Actions
5
5
This MLOps workflow demonstrates training and evaluating a machine learning model to predict taxi fare from the public [New York City Taxi dataset](https://registry.opendata.aws/nyc-tlc-trip-records-pds/) deployed with Amazon SageMaker.
6
6
7
7
This repository contains a number of start workflow files for GitHub Actions:
8
-
1.[build-pipeline.yml](./build-pipeline.yml) runs when a pull request is opened or updated. This workflow creates or updates the Sagemaker Pipeline, and starts an execution.
9
-
1.[deploy-staging.yml](./deploy-staging.yml) runs when a new commit is pushed to the master branch for the `staging` environment. This workflow deploys the SageMaker endpoint for staging. (WIP)
10
-
1.[deploy-prod.yml](./deploy-prod.yml) runs when a new commit is pushed to the master branch for the `production` environment. This workflow deploys the Sagemaker endpoint for production. (WIP)
11
-
1.[publish-template.yml](./publish-template.yml) runs when a new commit is pushed to the master branch for the `public` environment. Synths and uploads the CFN templates and build & deploy assets for launching the stack.
8
+
1.[build-deploy-pipeline.yml](.github/workflows/build-deploy-pipeline.yml) This workflow runs when a pull request is opened or commit with the following stages:
9
+
*`build`: This workflow creates or updates the Sagemaker Pipeline, and starts an execution in the `development` environment.
10
+
*`deploy_staging`: This workflow deploys the SageMaker endpoint in the `staging` environment.
11
+
*`deploy_prod`: This workflow deploys the SageMaker endpoint with Model Monitor in the `prod` environment.
12
+
1.[publish-template.yml](.github/workflows/publish-template.yml) runs when a new commit is pushed to the main branch in the `aws` environment:
13
+
* Synths and uploads the CFN templates and build & deploy assets for launching the stack.
0 commit comments