Browse Source

Fix travis release condition

Travis pulls tag as branch, so 'branch = master' is never true.
Use same regexp as earlier build.sh did
pull/1042/head
Max Prokhorov 5 years ago
committed by GitHub
parent
commit
9fdf217203
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      .travis.yml

+ 2
- 2
.travis.yml View File

@ -2,6 +2,7 @@ language: python
python:
- '2.7'
sudo: false
conditions: v1
cache:
directories:
- "~/.npm"
@ -19,7 +20,7 @@ script:
stages:
- name: Test
- name: Release
if: tag IS present AND branch = master
if: tag IS present AND tag =~ ^\d+\.\d+\.\d+$
jobs:
include:
- stage: Test
@ -42,7 +43,6 @@ deploy:
skip_cleanup: true
on:
tags: true
branch: master
repo: xoseperez/espurna
condition: $TRAVIS_BUILD_STAGE_NAME = Release
notifications:


Loading…
Cancel
Save