Merge pull request #532 from ericchiang/fix-travis-deployments
*: try to fix travis deployments by adding script with no arguments
This commit is contained in:
commit
d5744ab6e3
3 changed files with 4 additions and 1 deletions
|
@ -36,7 +36,7 @@ script:
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
provider: script
|
provider: script
|
||||||
script: "./build-docker push"
|
script: scripts/deploy
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
on:
|
on:
|
||||||
branch: master
|
branch: master
|
||||||
|
|
3
scripts/deploy
Executable file
3
scripts/deploy
Executable file
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
./build-docker push
|
Reference in a new issue