File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
2
2
3
3
jobs :
4
4
# Build & Deploy against development backend rer
5
- " build-dev-deploy-test " :
5
+ " build-dev " :
6
6
docker :
7
7
- image : docker:17.06.1-ce-git
8
8
steps :
@@ -78,9 +78,13 @@ workflows:
78
78
version : 2
79
79
build :
80
80
jobs :
81
- # Development builds are executed on "develop " branch only.
82
- - " build-dev-deploy-test " :
81
+ # Development builds are executed on "dev " branch only.
82
+ - " build-dev " :
83
83
filters :
84
84
branches :
85
85
only : " dev"
86
-
86
+ # Production builds are executed on "master" branch only.
87
+ - " build-prod " :
88
+ filters :
89
+ branches :
90
+ only : " master"
Original file line number Diff line number Diff line change @@ -244,6 +244,6 @@ check_service_status() {
244
244
245
245
configure_aws_cli
246
246
push_ecr_image
247
- deploy_cluster
248
- check_service_status
247
+ # deploy_cluster
248
+ # check_service_status
249
249
You can’t perform that action at this time.
0 commit comments