TSK-632: fixed env variables in travis config file
This commit is contained in:
parent
4afbb039d9
commit
f29926bfa3
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
space: Taskana
|
space: Taskana
|
||||||
on:
|
on:
|
||||||
all_branches: true
|
all_branches: true
|
||||||
if: repo = $DEPLOY_REPO AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
|
if: repo = env(DEPLOY_REPO) AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
|
||||||
- stage: "Release / Deploy"
|
- stage: "Release / Deploy"
|
||||||
script:
|
script:
|
||||||
- ci/release.sh lib/taskana-core $TRAVIS_TAG
|
- ci/release.sh lib/taskana-core $TRAVIS_TAG
|
||||||
|
|
@ -69,4 +69,4 @@ jobs:
|
||||||
&& ci/release.sh lib/taskana-cdi $TRAVIS_TAG
|
&& ci/release.sh lib/taskana-cdi $TRAVIS_TAG
|
||||||
&& ci/release.sh web/ $TRAVIS_TAG
|
&& ci/release.sh web/ $TRAVIS_TAG
|
||||||
&& ci/release.sh rest/taskana-rest-spring $TRAVIS_TAG
|
&& ci/release.sh rest/taskana-rest-spring $TRAVIS_TAG
|
||||||
if: repo = $DEPLOY_REPO AND (tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ OR branch = master) AND type != pull_request
|
if: repo = env(DEPLOY_REPO) AND (tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ OR branch = master) AND type != pull_request
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue