AMD64
Ruby
Git
deploy:
# a tag containing deploy/staging-probe deploys probe to staging
- provider: script
skip_cleanup: true
script: [ bash scripts/deploy.sh ]
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^\d+\.\d+\.\d+-.*deploy/staging-probe.*
Build Config
{
"deploy": [
{
"true": {
"condition": "$TRAVIS_TAG =~ ^\\d+\\.\\d+\\.\\d+-.*deploy/staging-probe.*",
"all_branches": true
},
"script": [
"bash scripts/deploy.sh"
],
"provider": "script",
"skip_cleanup": true
}
]
}