Fix release script call
The script was logging "Script failed with status 127". It seems that this is due to release.sh not being executable and not being referenced with a path starting with ./.
This commit is contained in:
parent
2b30a14744
commit
4dc45a935f
|
@ -85,7 +85,7 @@ deploy:
|
|||
condition: $PYTHON = true
|
||||
- provider: script
|
||||
skip_cleanup: true
|
||||
script: travis/release.sh
|
||||
script: ./travis/release.sh
|
||||
on:
|
||||
tags: true
|
||||
condition: $PYTHON = true
|
||||
|
|
Loading…
Reference in New Issue