diff options
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 6e1e125f..d4903940 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,7 +56,9 @@ deploy: on: tags: true rust: stable - condition: $CLIPPY != true + condition: + - $CLIPPY != true + - $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ repo: alacritty/alacritty - provider: releases api_key: @@ -67,5 +69,7 @@ deploy: on: tags: true rust: stable-x86_64-pc-windows-msvc - condition: $CLIPPY != true + condition: + - $CLIPPY != true + - $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ repo: alacritty/alacritty |