mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
Merge pull request #82 from acelaya/feature/disable-tag-build
Disabled yarn build when a tag exists in travis
This commit is contained in:
commit
9d513e9ea0
2 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,7 @@ install:
|
||||||
script:
|
script:
|
||||||
- yarn lint
|
- yarn lint
|
||||||
- yarn test:ci
|
- yarn test:ci
|
||||||
- yarn build # Make sure the app can be built without errors
|
- if [[ -z $TRAVIS_TAG ]]; then yarn build ; fi
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- yarn ocular coverage/clover.xml
|
- yarn ocular coverage/clover.xml
|
||||||
|
|
|
@ -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.
|
* [#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.
|
* [#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
|
#### Deprecated
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue