We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ca7ea commit bd602b2Copy full SHA for bd602b2
.circleci/config.yml
@@ -105,6 +105,15 @@ jobs:
105
pip install -r packages/ml_api/requirements.txt
106
py.test -vv packages/ml_api/tests -m differential
107
108
+ section_10_deploy_to_heroku:
109
+ <<: *defaults
110
+ steps:
111
+ - checkout
112
+ - run:
113
+ name: Deploy to Heroku
114
+ command: |
115
+ git push https://heroku:[email protected]/$HEROKU_APP_NAME.git master
116
+
117
workflows:
118
version: 2
119
test-all:
@@ -121,3 +130,10 @@ workflows:
121
130
branches:
122
131
only:
123
132
- master
133
+ - section_10_deploy_to_heroku:
134
+ requires:
135
+ - train_and_upload_regression_model
136
+ filters:
137
+ branches:
138
+ only:
139
+ - master
0 commit comments