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.
2 parents 14a77af + 9d56ab9 commit 9627066Copy full SHA for 9627066
.circleci/config.yml
@@ -46,8 +46,15 @@ jobs:
46
command: |
47
apk add --no-cache jq py-pip sudo
48
sudo pip install awscli --upgrade
49
- - run: ./build.sh DEV
50
- - run: ./deploy.sh DEV
+ - run:
+ name: Building
51
+ command: |
52
+ set +e
53
+ ./build.sh DEV
54
55
+ name: Deploying
56
57
+ ./deploy.sh DEV
58
deployProd:
59
docker:
60
- image: docker:17.06.1-ce-git
@@ -64,8 +71,15 @@ jobs:
64
71
65
72
66
73
67
- - run: ./build.sh PROD
68
- - run: ./deploy.sh PROD
74
75
76
77
78
+ ./build.sh PROD
79
80
81
82
+ ./deploy.sh PROD
69
83
workflows:
70
84
version: 2
85
build:
0 commit comments