Skip to content

Commit

Permalink
Fix syntax of custom deploy condition
Browse files Browse the repository at this point in the history
  • Loading branch information
floydkots committed Aug 16, 2018
1 parent ae0e4f8 commit 7b9866d
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ jobs:
- stage: Packaging and Deployment
# We don't sign the package (SIGN_PACKAGE=0) while building it on travis because bintray will do that
# automatically once we upload the package.
Expand Down Expand Up @@ -257,7 +256,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down Expand Up @@ -307,7 +306,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down Expand Up @@ -357,7 +356,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down Expand Up @@ -407,7 +406,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down Expand Up @@ -457,7 +456,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down Expand Up @@ -502,7 +501,7 @@ jobs:
on:
branch: next
tags: true
condition: '"$TRAVIS_TAG" =~ ^v[\d]+.[\d]+.[\d]+$'
condition: tag =~ /^v[\d]+.[\d]+.[\d]+$/
skip_cleanup: true
- provider: script
script: >-
Expand Down

0 comments on commit 7b9866d

Please sign in to comment.