From 66295f1a16a45e42817bfce193a46b65f04a3ab9 Mon Sep 17 00:00:00 2001 From: Vladimir Kotal Date: Fri, 5 Oct 2018 20:04:39 +0200 Subject: [PATCH] try the release condition without quotes --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd3e5e9c758..b85234f4bcf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ deploy: on: repo: oracle/opengrok tags: true - condition: "$TRAVIS_TAG =~ rc[0-9]+$" + condition: $TRAVIS_TAG =~ rc[0-9]+$ branch: master # Full release - provider: releases @@ -62,5 +62,5 @@ deploy: on: repo: oracle/opengrok tags: true - condition: "! $TRAVIS_TAG =~ rc[0-9]+$" + condition: ! $TRAVIS_TAG =~ rc[0-9]+$ branch: master