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.
1 parent 155efa4 commit d2511cfCopy full SHA for d2511cf
.travis.yml
@@ -54,10 +54,10 @@ notifications:
54
jobs:
55
include:
56
- stage: deploy
57
- # Don't deploy from PRs and only from our default branches.
+ # Don't deploy from PRs. Only deploy from our default branches, or if commit is tagged.
58
# This is a Travis-specific boolean language: https://docs.travis-ci.com/user/conditional-builds-stages-jobs#Specifying-conditions
59
# The deployment logic for pushed branches is further defined in scripts\travis\build.sh
60
- if: type != pull_request and branch =~ ^(v1\.\d+\.x|master)$
+ if: type != pull_request and (branch =~ ^(v1\.\d+\.x|master)$ or tag IS present)
61
env:
62
- JOB=deploy
63
before_script: skip
0 commit comments