From 9df2de5b30e35f573aec979c65945999d7710500 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Wed, 19 Dec 2018 10:34:39 +0100 Subject: [PATCH] Disabled yarn build when a tag exists in travis --- .travis.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 479302b1..fbd895f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ install: script: - yarn lint - yarn test:ci - - yarn build # Make sure the app can be built without errors + - if [[ -z $TRAVIS_TAG ]]; then yarn build ; fi after_success: - yarn ocular coverage/clover.xml diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f6e4b20..a05c43d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), * [#80](https://github.com/shlinkio/shlink-web-client/issues/80) Deeply refactored app to do true dependency injection with an IoC container. * [#79](https://github.com/shlinkio/shlink-web-client/issues/79) Updated to nginx 1.15.7 as the base docker image. +* [#75](https://github.com/shlinkio/shlink-web-client/issues/75) Prevented duplicated `yarn build` in travis when a tag exists. #### Deprecated