From 31e78767d9b76b95e101b6ec5f301575ff27721e Mon Sep 17 00:00:00 2001 From: Prokop Simek Date: Mon, 20 Jan 2020 16:44:05 +0100 Subject: [PATCH] docs(travis): build on all branches by default If you want to have more prereleases than default so you have to enable deploy on all branches. ref.: https://docs.travis-ci.com/user/deployment#examples-of-conditional-deployment --- docs/recipes/travis.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/recipes/travis.md b/docs/recipes/travis.md index 02ac8356..02290db1 100644 --- a/docs/recipes/travis.md +++ b/docs/recipes/travis.md @@ -92,4 +92,6 @@ jobs: # Use nvm to install and use the Node LTS version (nvm is installed on all Travis images) - nvm install lts/* - npx semantic-release + on: + all_branches: true ```