File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,13 @@ before_deploy:
21
21
deploy :
22
22
- edge : true
23
23
provider : script
24
- script : if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cf zero-downtime-push create-react-app-devops -f ./manifest.yml; else echo "PR skip deploy"; fi
24
+ script : if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cf zero-downtime-push create-react-app-devops-staging -f ./manifest-staging .yml; else echo "PR skip deploy"; fi
25
25
skip_cleanup : true
26
26
on :
27
27
branch : master
28
+ - edge : true
29
+ provider : script
30
+ script : if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then cf zero-downtime-push create-react-app-devop -f ./manifest.yml; else echo "PR skip deploy"; fi
31
+ skip_cleanup : true
32
+ on :
33
+ tags : true
Original file line number Diff line number Diff line change
1
+ ---
2
+ applications :
3
+ - name : create-react-app-devops-staging
4
+ buildpack : https://github.com/cloudfoundry/nodejs-buildpack
5
+ command : npm run bluemix
6
+ disk_quota : 256MB
7
+ memory : 128MB
8
+ services :
9
+ - keys
You can’t perform that action at this time.
0 commit comments